下面是如何你可以用一個層列表做一個例子:我會改變的左上角和右上角的屬性是這樣的:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="@android:color/transparent"/>
</shape>
</item>
<item android:top="1dp">
<shape android:shape="rectangle">
<solid android:color="@android:color/holo_blue_bright"/>
</shape>
</item>
<item android:left="3dp">
<shape android:shape="rectangle">
<gradient android:angle="270" android:startColor="#8C2300" android:endColor="#D34617"/>
</shape>
</item>
<item android:right="8dp">
<shape android:shape="rectangle">
<gradient android:angle="270" android:startColor="#000000" android:endColor="#ffc0cb"/>
</shape>
</item>
</layer-list>
在您的可繪製文件夾中調用此文件與layers.xml類似。然後應用它作爲背景,以您的看法是這樣的:
android:background="@drawable/shape"
我可能會研究層列表,你可能會有更多的運氣。我沒有看到有辦法做到這一點與形狀。 – j2emanue