這是一個很好的做法,使用TextView
作爲分隔符而不是View
。如果不是那麼爲什麼?在下圖中我使用了TextView
(即1號線)和View
(即2號線),但看起來相同。我提到很多網站,但仍然沒有得到任何好的解釋。下面是TextView
和代碼View
這是一個很好的做法,使用Textview作爲分隔符而不是視圖
的TextView
<TextView
android:id="@+id/TextView"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray"
android:layout_below="@+id/line1"/>
查看
<View
android:id="@+id/View"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@android:color/darker_gray"
android:layout_below="@+id/line2"/>
沒有。使用查看分隔符 –
textview也是一個視圖 – mismanc
閱讀問題@Divyesh。我問過,如果答案是否定的,那麼解釋爲什麼 – MashukKhan