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?
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(----);