我有一个场景,我想根据定义的主题设置Drawable
。
为了进一步解释这一点,以下是我在代码中的内容:
\ RES \值\ attrs.xml
<resources>
<declare-styleable name="AppTheme">
<attr name="homeIcon" format="reference" />
</declare-styleable>
</resources>
RES \值\ styles.xml
<resources>
<style name="AppTheme" parent="android:style/Theme">
<item name="attr/homeIcon">@drawable/ic_home</item>
</style>
</resources>
的AndroidManifest.xml
<application android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
因为您已经注意到我正在定义自定义attr homeIcon并在AppTheme中设置属性值。
当我在布局XML中定义此属性并尝试访问它时,它可以顺利运行
<ImageView android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="?attr/homeIcon" />
并在Drawable
中呈现ImageView
ic_home。
但我无法弄清楚如何以编程方式访问Drawable
。
我试图通过定义一个持有者LayerList Drawable
来解决这个问题,这导致资源未找到异常:
<?xml version="1.0" encoding="utf-8"?>
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="?attr/homeIcon" />
</layer-list>
摘要 我想以编程方式访问自定义
Drawable
中定义的Theme
。
答案 0 :(得分:70)
我认为您可以使用此代码获取Drawable:
TypedArray a = getTheme().obtainStyledAttributes(R.style.AppTheme, new int[] {R.attr.homeIcon});
int attributeResourceId = a.getResourceId(0, 0);
Drawable drawable = getResources().getDrawable(attributeResourceId);
a.recycle();
答案 1 :(得分:10)
另一种可能的方法:
public static int getResIdFromAttribute(final Activity activity,final int attr)
{
if(attr==0)
return 0;
final TypedValue typedvalueattr=new TypedValue();
activity.getTheme().resolveAttribute(attr,typedvalueattr,true);
return typedvalueattr.resourceId;
}
或者在Kotlin:
@JvmStatic
fun getResIdFromAttribute(activity: Activity, attr: Int): Int {
if (attr == 0)
return 0
val typedValue = TypedValue()
activity.theme.resolveAttribute(attr, typedValue, true)
return typedValue.resourceId
}
不需要在这里回收任何东西......
用法:
int drawableResId=getResIdFromAttribute(this,R.attr.homeIcon);
Drawable drawable = getResources().getDrawable(drawableResId);
答案 2 :(得分:2)
我使用下面的方法获取资源ID表单样式属性。然后它可以用于drawable,string,dimension等。
TypedArray typedArray = context.getTheme().obtainStyledAttributes(new int[] { R.attr.attrName });
int resourceId = typedArray.getResourceId(0, defaultResourceId);
typedArray.recycle();
欢呼: - )
答案 3 :(得分:1)
如果您现在使用支持/设计库更容易获得drawables -
func scrollViewDidScroll(scrollView: UIScrollView) // any offset changes
或
Context.getDrawable(int)
参考 - https://plus.google.com/+BenjaminWeiss/posts/M1dYFaobyBM
答案 4 :(得分:1)
以下是我对此主题的调查结果。
如果我们有declare-stylable
,那么我们可以在主题中覆盖这些值。
到目前为止,我找到了如何获得它们的最佳方法如下。
TypedArray a = context.getTheme().obtainStyledAttributes(R.styleable.AppTheme);
a.getDrawable(R.styleable.AppTheme_homeIcon);
通过使用R.styleable.AppTheme_homeIcon
,我们正在引用我们想要的那个属性。例如,如果我们有更多属性,那么我们可以按如下方式引用它们:
a.getColor(R.styleable.AppTheme_color,defaultValue);
a.getDimension(R.styleable.AppTheme_width,defaultWidth);
如果在当前主题中未定义这些属性,您将获得默认值并且没有例外。