gpt4 book ai didi

android - 在 Android 中使用 PopupWindow 调暗背景

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:47:28 26 4
gpt4 key购买 nike

我可以使用 PopupWindow 而不是 Dialog 使背景变暗吗?我问这个是因为我正在使用对话框,但是对话框没有显示在单击的项目下方,而使用 PopupWindow 我已经在项目下方显示了弹出窗口。

最佳答案

我使用以下代码,它对我来说效果很好。

public static void dimBehind(PopupWindow popupWindow) {
View container;
if (popupWindow.getBackground() == null) {
if (VERSION.SDK_INT >= VERSION_CODES.M){
container = (View) popupWindow.getContentView().getParent();
} else {
container = popupWindow.getContentView();
}
} else {
if (VERSION.SDK_INT >= VERSION_CODES.M) {
container = (View) popupWindow.getContentView().getParent().getParent();
} else {
container = (View) popupWindow.getContentView().getParent();
}
}
Context context = popupWindow.getContentView().getContext();
WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
WindowManager.LayoutParams p = (WindowManager.LayoutParams) container.getLayoutParams();
p.flags = WindowManager.LayoutParams.FLAG_DIM_BEHIND;
p.dimAmount = 0.3f;
wm.updateViewLayout(container, p);
}

来自 this answer .

更新:

下面 fdermishin 的回答更好。我已经将它向后测试到 API 级别 19,并且运行良好。

如果您正在使用 Kotlin,最好将其用作 Kotlin 扩展:

//Just new a kotlin file(e.g. ComponmentExts),
//copy the following function declaration into it
/**
* Dim the background when PopupWindow shows
*/
fun PopupWindow.dimBehind() {
val container = contentView.rootView
val context = contentView.context
val wm = context.getSystemService(Context.WINDOW_SERVICE) as WindowManager
val p = container.layoutParams as WindowManager.LayoutParams
p.flags = p.flags or WindowManager.LayoutParams.FLAG_DIM_BEHIND
p.dimAmount = 0.3f
wm.updateViewLayout(container, p)
}

//then use it in other place like this:
popupWindow.dimBehind()

关于android - 在 Android 中使用 PopupWindow 调暗背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35874001/

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