android中畫線比較簡(jiǎn)單,常用的有實(shí)線和虛線
一.實(shí)線

Paste_Image.png
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
<stroke
android:width="2dp"
android:color="#24cc0e" />
<!-- shape高度 -->
<size android:height="10dp" />
</shape>
二.虛線

Paste_Image.png
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line">
<stroke android:width="2dp"
android:color="#24cc0e"
android:dashGap="2dp"
android:dashWidth="4dp" />
<!-- shape高度 -->
<size android:height="10dp" />
</shape>
Note:
stroke的android:width ,線的高度;
size的android:height,整個(gè)形狀區(qū)域的高度;
引用虛線的view需要添加屬性android:layerType="software"。