web-dev-qa-db-ja.com

テーマとattrs.xmlで定義されたリソースにアクセスするandroid

定義したテーマに応じてDrawableを設定するシナリオがあります。

これをさらに説明するために、ここに私がコードで持っているものがあります:

\ res\values\attrs.xml

<resources>
    <declare-styleable name="AppTheme">
        <attr name="homeIcon" format="reference" />
    </declare-styleable>
</resources>

res\values\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 ic_homeをImageViewにレンダリングします。

しかし、プログラムから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にプログラムでアクセスしたい。

34
Shardul

このコードで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();
72
dmaxi

それを行う別の可能な方法:

  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;
    }

またはコトリンで:

@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);
11

以下のメソッドを使用して、リソースIDフォームスタイル属性を取得しました。次に、ドローアブル、文字列、寸法などに使用できます。

TypedArray typedArray = context.getTheme().obtainStyledAttributes(new int[] { R.attr.attrName });   
int resourceId = typedArray.getResourceId(0, defaultResourceId);
typedArray.recycle();

乾杯:-)

このトピックに関する私の調査結果は次のとおりです。 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);

また、現在のテーマでこれらの属性が定義されていない場合は、デフォルト値が取得され、例外は発生しません。

1

サポート/デザインライブラリを使用している場合、ドローアブルを取得する簡単な方法は次のとおりです-

Context.getDrawable(int)

または

ContextCompat.getDrawable(Context, int)

参照- https://plus.google.com/+BenjaminWeiss/posts/M1dYFaobyBM

1
Parag Naik