android – 根据当前设置的主题获取attr颜色值

前端之家收集整理的这篇文章主要介绍了android – 根据当前设置的主题获取attr颜色值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的活动中,我正在维护一个SuperActivity,我正在设置主题.
public class SuperActivity extends Activity {
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setTheme(R.style.MyTheme);
    }
}

的themes.xml

<!-- ImageBackround -->
<style name="Theme.MyTheme" parent="ThemeLight">
    <item name="myBgColor">@color/translucent_black</item>
</style>

现在我想在我的一个孩子活动中获取这种颜色.

正如在这个可能的answer中所提到的,我写道:

int[] attrs = new int[] { R.attr.myBgColor /* index 0 */};
TypedArray ta = ChildActivity.this.obtainStyledAttributes(attrs);
int color = ta.getColor(0,android.R.color.background_light);
String c = getString(color);
ta.recycle();

但每次我得到android.R.color.background_light&的默认值的值.不是R.attr.myBgColor.

哪里我做错了.我是否通过了ChildActivity.this的错误背景?

解决方法

你有两个可能的解决方案(一个是你实际拥有的,但我为了完整性而包括两个):
TypedValue typedValue = new TypedValue();
if (context.getTheme().resolveAttribute(R.attr.xxx,typedValue,true))
  return typedValue.data;
else
  return Color.TRANSPARENT;

要么

int[] attribute = new int[] { R.attr.xxx };
TypedArray array = context.getTheme().obtainStyledAttributes(attribute);
int color = array.getColor(0,Color.TRANSPARENT);
array.recycle();
return color;

Color.TRANSPARENT可以是任何其他默认值.是的,正如您所怀疑的那样,背景非常重要.如果您继续获取默认颜色而不是真实颜色,请查看您传递的上下文.我花了几个小时搞清楚,我试图省去一些打字,只是使用了getApplicationContext(),但它找不到那些颜色……

原文链接:https://www.f2er.com/android/318004.html

猜你在找的Android相关文章