gpt4 book ai didi

android - PopupWindow 背景有时会变得透明和紫色

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:59:16 25 4
gpt4 key购买 nike

下面是我如何创建一个PopupWindow:

private static PopupWindow createPopup(FragmentActivity activity, View view)
{
PopupWindow popup = new PopupWindow(view, ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT, true);
popup.setOutsideTouchable(true);
popup.setFocusable(true);
popup.setBackgroundDrawable(new ColorDrawable(Tools.getThemeReference(activity, R.attr.main_background_color)));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
popup.setElevation(Tools.convertDpToPixel(8, activity));
PopupWindowCompat.setOverlapAnchor(popup, true);

return popup;
}

main_background_color 是纯色,白色或黑色,具体取决于主题。有时会发生以下情况:

enter image description here

我怎样才能避免这种情况?它发生在带有 android 6 的模拟器中,仅举个例子...通常情况下,PopupWindow 背景会按预期工作...

编辑

此外,这是我的 getThemeReference 方法:

public static int getThemeReference(Context context, int attribute)
{
TypedValue typeValue = new TypedValue();
context.getTheme().resolveAttribute(attribute, typeValue, false);
if (typeValue.type == TypedValue.TYPE_REFERENCE)
{
int ref = typeValue.data;
return ref;
}
else
{
return -1;
}
}

编辑 2 - 这可能会解决问题:使用 getThemeColor 而不是 getThemeReference

public static int getThemeColor(Context context, int attribute)
{
TypedValue typeValue = new TypedValue();
context.getTheme().resolveAttribute(attribute, typeValue, true);
if (typeValue.type >= TypedValue.TYPE_FIRST_COLOR_INT && typeValue.type <= TypedValue.TYPE_LAST_COLOR_INT)
{
int color = typeValue.data;
return color;
}
else
{
return -1;
}
}

最佳答案

感谢更新,我要求你展示方法,因为实际上我在我的应用程序中使用相同类型的东西来检索颜色属性,但我们的方法有点不同。

这是我的:

public static int getThemeColor(Context context, int attributeId) {
TypedValue typedValue = new TypedValue();

TypedArray a = context.obtainStyledAttributes(typedValue.data, new int[] { attributeId });
int color = a.getColor(0, 0);

a.recycle();

return color;
}

虽然我不能确定这确实是问题所在,但您的评论有问题。调用 new ColorDrawable() 需要一种颜色,而不是引用。我过去有时也会犯这个错误,也会得到奇怪的颜色,因为系统试图生成带有引用 ID 的颜色。您是否尝试过像红色这样的真实颜色,看看您的方法是否真的有效?

无论如何我都会用我的方法替换你的方法,因为它保证你检索到颜色。

关于android - PopupWindow 背景有时会变得透明和紫色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38050213/

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