2015-10-26 98 views

回答

1

我可以看到兩個選項可用來您:

  1. 你可以試試這個答案(How do I make a dotted/dashed line in Android?
  2. 創建自定義視圖覆蓋方法查看#的onDraw(Canvas)的 - 在這裏你可以借鑑任何你想要的。

從參考答案摘自:

沒有Java代碼:

繪製/ dotted.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="line"> 

    <stroke 
     android:color="#C7B299" 
     android:dashWidth="10px" 
     android:dashGap="10px" 
     android:width="1dp"/> 
</shape> 

view.xml用:

<ImageView 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:src="@drawable/dotted" />