我有一個可繪製的XML文件(background.xml)繪製對象XML中:由所使用的LinearLayout在運行時改變形狀純色作爲背景
<?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>
:
<?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
。這個怎麼做?
不,我不認爲這是可能的 – Raghunandan
一切皆有可能 – AndroidGecko