1
我試圖在截圖中實現佈局,紅色部分。 我認爲一個表格佈局是適當的,但我不介意任何真正的,我只需要能夠實現這個漂亮的連接虛線與表像顯示。 我曾嘗試使用帶有虛線背景的視圖,但它感覺不對(Android Drawing Separator/Divider Line in Layout?)。 Android UI佈局
我試圖在截圖中實現佈局,紅色部分。 我認爲一個表格佈局是適當的,但我不介意任何真正的,我只需要能夠實現這個漂亮的連接虛線與表像顯示。 我曾嘗試使用帶有虛線背景的視圖,但它感覺不對(Android Drawing Separator/Divider Line in Layout?)。 Android UI佈局
我可以看到兩個選項可用來您:
從參考答案摘自:
沒有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" />