我有一个像这样的自定义矩形
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" android:padding="10dp">
<solid android:color="#FFFFFF" />
<stroke android:width="1dip" android:color="#ff6600" />
<corners
android:bottomRightRadius="5dp"
android:bottomLeftRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp"/>
</shape>
我希望像这样在
中的矩形内画一条线<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line" >
<solid android:color="@color/cafe" />
<stroke android:width="5dip"
android:color="#FF0000" android:dashWidth="5dip"/>
</shape>
我该怎么做,帮助
答案 0 :(得分:5)
关键字为layer-list
。这是一个完全基于xml的非常好的例子:Android: How can i use the layer-list and shape elements to draw a horizontal rule when set as background?
答案 1 :(得分:1)
您可以通过扩展View类并覆盖onDraw方法来实现自定义视图。在onDraw()中,您可以使用Canvas类中的方法绘制所需的形状。 不要忘记先在方法中调用super.onDraw()。
查找示例here。