以下是我创建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
是纯色,白色或黑色,具体取决于主题。有时会发生以下情况:
我该如何避免这种情况?它仅在例如android 6 SOMETIMES的模拟器中发生...通常情况下,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;
}
}
答案 0 :(得分:5)
感谢您的更新,我要求您展示该方法,因为我实际上在我的应用中使用相同类型的东西来检索颜色属性,但我们的方法有点不同。
这是我的:
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的颜色。您是否尝试过像红色这样的真实颜色,看看您的方法是否真的有效?
我会用我的方法替换你的方法,因为它可以保证你检索颜色。