web-dev-qa-db-fra.com

Changer la couleur unie de la forme lors de l'exécution à l'intérieur du XML dessinable utilisé comme arrière-plan

J'ai un fichier xml dessinable (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>

utilisé par un 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"
    >

Maintenant, je dois changer la forme shape_id couleur unie à l'exécution en fonction de certaines conditions. Comment faire ça?

29
ʞᴉɯ

Trouvé par moi:

    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
ʞᴉɯ