gpt4 book ai didi

android - 如何在android中设置布局背景透明显示弹出窗口?

转载 作者:行者123 更新时间:2023-12-05 00:17:35 25 4
gpt4 key购买 nike

当我像这样显示弹出窗口时,我希望能够模糊或调暗布局背景。请帮助我。

这是我的代码:

LayoutInflater inflater = (LayoutInflater) ResidentActivity.this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(
R.layout.activity_appselection,
(ViewGroup) findViewById(R.id.popuplayoutelement));
pwindo = new PopupWindow(layout, 470, 540, true);
pwindo.showAtLocation(layout, Gravity.CENTER, 0, 45);

我的输出显示了这个

enter image description here但我需要这样 enter image description here

最佳答案

在布局中声明主要父级,如下所示:

RelativeLayout rl = (RelativeLayout)findViewById(R.id.relativeLayout);

然后,当您显示弹出窗口时,也添加此语句。

rl.setAlpha(0.5F);

这会将布局中的 alpha 设置为 50%。您可以根据需要进行调整。

关于android - 如何在android中设置布局背景透明显示弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26858249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com