<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- the first <item> is used to set border to this drawable -->
<item>
<shape android:shape="rectangle">
<padding
android:bottom="2dp"
android:left="2dp"
android:right="2dp"
android:top="2dp" />
<solid android:color="#E91E63" />
<corners android:radius="10dp"/>
</shape>
</item>
<!-- the second <item> is used to add some space between border and inner
rectangle object -->
<item>
<shape android:shape="rectangle">
<padding
android:bottom="3dp"
android:left="3dp"
android:right="3dp"
android:top="3dp" />
<solid android:color="@android:color/black" />
<corners android:radius="10dp"/>
</shape>
</item>
<!-- the third <item> inner
rectangle object in drawable-->
<item>
<shape android:shape="rectangle">
<padding
android:bottom="10dp"
android:left="10dp"
android:right="10dp"
android:top="10dp" />
<solid android:color="#03A9F4" />
<corners android:radius="10dp"/>
</shape>
</item>
</layer-list>
3条答案
按热度按时间cnwbcb6i1#
你可以使用图层列表
sqyvllje2#
使用**
layer-list
**尝试这种方法输出
0lvr5msh3#
下面是您可以用来创建此背景的button_bg.xml文件:
以下是预览图像: