使用shape畫虛線
阿新 • • 發佈:2018-11-26
在Android中使用shape畫虛線,一定要加上
一定要注意加上android:layerType="software"
android:layerType="software"這句話,不然顯示的就是直線 畫虛線的 beijing_xuxian_black.xml檔案
佈局檔案中使用<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> <stroke android:width="1.5dp" android:color="@color/black_bantouming_25" android:dashGap="4dp" android:dashWidth="5dp" /> </shape>
<View android:layout_width="match_parent" android:layout_height="20dp" android:layout_marginLeft="11dp" android:layout_marginRight="11dp" android:background="@drawable/beijing_xuxian_black" android:layerType="software" />