我希望通过代码从属性中获取指向引用。在我的xml布局中,我可以轻松地获得引用的drawable:
android:background="?attr/listItemBackground"
属性引用由我的主题设置。我正在寻找是否可以通过代码获得引用的drawable。
我可以通过创建样式attr并在自定义视图中读取值来解决这个问题,但在这种情况下,我想弄清楚这是否可行而不做所有这些。我认为这是可能的,但我还没有找到获得该属性引用的方法。
谢谢!
答案 0 :(得分:104)
您就是这样做的:
// Create an array of the attributes we want to resolve
// using values from a theme
int[] attrs = new int[] { R.attr.listItemBackground /* index 0 */};
// Obtain the styled attributes. 'themedContext' is a context with a
// theme, typically the current Activity (i.e. 'this')
TypedArray ta = themedContext.obtainStyledAttributes(attrs);
// To get the value of the 'listItemBackground' attribute that was
// set in the theme used in 'themedContext'. The parameter is the index
// of the attribute in the 'attrs' array. The returned Drawable
// is what you are after
Drawable drawableFromTheme = ta.getDrawable(0 /* index */);
// Finally, free the resources used by TypedArray
ta.recycle();
答案 1 :(得分:0)
你不应该使用:
android:background="@drawable/listItemBackground"
然后:
myImageButton.getBackgroundDrawable()
或许我不明白......