其他分享
首页 > 其他分享> > 如何创建由两种颜色并排组成的android drawable?

如何创建由两种颜色并排组成的android drawable?

作者:互联网

Uisng XML是否可以创建一个drawable,其中一半是color1而另一半是color2?当我将drawable设置为视图的背景时,它应该如下图所示.

enter image description here

解决方法:

通过xml完成​​:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:right="100dp">
    <shape android:shape="rectangle">
        <size android:height="100dp" android:width="100dp"/>
        <solid android:color="@android:color/black"/>
    </shape>
</item>

<item android:left="100dp">
    <shape android:shape="rectangle">
        <size android:height="100dp" android:width="100dp"/>
        <solid android:color="@android:color/holo_green_light"/>
    </shape>
</item>
</layer-list>

将它放在res / drawable文件夹中并指定为android:background to image

标签:android,xml-drawable,drawable,android-drawable
来源: https://codeday.me/bug/20190829/1757438.html