Android利用shape畫虛線

Android利用shape畫虛線html

咱們知道,想在Android XML中畫出一條直線,很簡單: <View android:layout_width="match_parent" android:layout_height="1px" android:background="#FFFFFF"/> 若是想要畫出一條虛線呢? 在drawable目錄下新建bg_dash_line.xmljava

<?xml version="1.0" encoding="utf-8"?>android

<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時,就是實線 注意:xml

  1. 若是在<stroke>標籤中設置了android:width,則在<View>標籤中android:layout_height的值必須大於android:width的值,不然虛線不會顯示。若是不設置,默認android:width爲0。
  2. 關於4.0以上設備虛線會變實線的問題: 代碼中能夠添加: [java] view plaincopy在CODE上查看代碼片派生到個人代碼片 line.setLayerType(View.LAYER_TYPE_SOFTWARE, null); XML中能夠添加: [html] view plaincopy在CODE上查看代碼片派生到個人代碼片 android:layerType="software" 如上例所示,若是想正常的顯示虛線: <View android:layout_width="match_parent" android:layout_height="4px" android:layerType="software" android:background="@drawable/bg_dash_line"/>
相關文章
相關標籤/搜索