一个可绘制的2个或更多形状?

时间:2015-10-31 11:30:24

标签: android xml

是否可以在一个drawable中有2个或更多形状?
我试图创造这样的东西:

enter image description here

或者这个:

enter image description here

我有一个drawable token.xml,它创建一个黑色和白色边框的矩形:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >

<!-- view background color -->
<solid
    android:color="@android:color/black" >
</solid>

<!-- view border color and width -->
<stroke
    android:width="1dp"
    android:color="@android:color/white" >
</stroke>

任何想法?

1 个答案:

答案 0 :(得分:1)

where