我必須使用不同的顏色將背景設置爲很多視圖。但如果我這樣做了,xml將大約20個文件,這是巨大的,所以我想將下面的xml layer-list
轉化爲完全獨立的模塊,而不需要單個xml,因此它可以重用,請幫助我們。以編程方式創建以下代碼xml到圖層列表android
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
//i can create this drawable
<item>
<shape android:shape="rectangle">
<solid android:color="#ff2632"/>
</shape> </item>
//I don't know how to achieve this one, especially this "bottom property"
<item android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="#d7ffa2"/>
</shape> </item>
</layer-list>
你想改變哪種顏色? –
@NigamPatro,<項機器人:底部= 「2DP」> <形狀機器人:形狀= 「矩形」> <固體機器人:顏色= 「#d7ffa2」/> – TheReprator
@ NigamPatro,基本上我必須設置這個xml作爲背景可以用不同的顏色代碼來查看 – TheReprator