**
绘制水平线 shape_horizontal_line
**
c
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:width="1dp"
android:color="#AAAAAA"
android:dashWidth="2dp"
android:dashGap="2dp" />
</shape>
**
绘制垂直线 shape_vertical_line
**
c
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="90"
android:toDegrees="90">
<shape android:shape="line">
<stroke
android:width="1dp"
android:color="#AAAAAA"
android:dashWidth="2dp"
android:dashGap="2dp" />
</shape>
</rotate>