You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
492 B
14 lines
492 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
|
|
<stroke
|
|
android:color="#ffffff"
|
|
android:dashWidth="10dp"
|
|
/>
|
|
<!--width:线条的高度
|
|
color:颜色
|
|
android:dashGap="8dp"
|
|
dashWidth:破折线的宽度
|
|
dashGap:破折线间空隙的宽度
|
|
如果这里设置了width,xml中android:layout_height的值必须比它大。不设置就默认为0
|
|
-->
|
|
</shape>
|