web-dev-qa-db-ja.com

背景として使用されるDrawable xml内で実行時にシェイプの単色を変更する

Drawable xmlファイル(background.xml)があります。

<?xml version="1.0" encoding="UTF-8"?>
<layer-list xmlns:Android="http://schemas.Android.com/apk/res/Android" >
    <item>
        <shape>
         ...........
        </shape>
    </item>

    <item Android:id="@+id/shape_id">
        <shape Android:shape="rectangle">
            <solid Android:color="#ffefefef" /> 
        </shape>
    </item>

</layer-list>

linearLayoutで使用:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    Android:background="@drawable/background"
    Android:id="@+id/layout_id"
    >

次に、形状を変更する必要がありますshape_idいくつかの条件に基づく実行時の無地。これを行う方法?

29
ʞᴉɯ

私が見つけた:

    View v = findViewById(R.id.layout_id);

    LayerDrawable bgDrawable = (LayerDrawable)v.getBackground();
    final GradientDrawable shape = (GradientDrawable)   bgDrawable.findDrawableByLayerId(R.id.shape_id);
    shape.setColor(----);
61
ʞᴉɯ