在drawable目錄下新建bg_dash_line.xml:
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="line"> <stroke android:width="3px" android:color="#FFFFFF" android:dashWidth="10px" android:dashGap="10px" /></shape>說明: 顯示一條虛線,width為線條的高度,dashWidth為破折線的寬度,dashGap為破折線之間的空隙的寬度,當dashGap=0時,就是實線 注意: **1. 如果在標簽中設置了android:width,則在標簽中android:layout_height的值必須大于android:width的值,否則虛線不會顯示。如果不設置,默認android:width為0。 2. 關于4.0以上設備虛線會變實線的問題:** 代碼中可以添加:
line.setLayerType(View.LAYER_TYPE_SOFTWARE, null);XML中可以添加:
android:layerType="software"如上例所示,如果想正常的顯示虛線:
<View android:layout_width="match_parent" android:layout_height="4px" android:layerType="software" android:background="@drawable/bg_dash_line"/>新聞熱點
疑難解答