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
いくつかの条件に基づく実行時の無地。これを行う方法?
私が見つけた:
View v = findViewById(R.id.layout_id);
LayerDrawable bgDrawable = (LayerDrawable)v.getBackground();
final GradientDrawable shape = (GradientDrawable) bgDrawable.findDrawableByLayerId(R.id.shape_id);
shape.setColor(----);