在我的活动中,我正在维护一个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
&amp;的默认值。不是R.attr.myBgColor
。
我做错了。我是否传递了ChildActivity.this
的错误背景?
答案 0 :(得分:7)
您有两种可能的解决方案(一种是您实际拥有的解决方案,但为了完整起见,我将其包括在内):
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()
,但它找不到那些颜色......