2011-08-03 68 views
3

可能重複:
Android Drawing Separator/Divider Line in Layout?Android的 - 在垂直佈局項目之間的分隔

我提出類似的列表視圖的東西,實際上並沒有做一個列表視圖...

我在垂直佈局中有一堆文本視圖,我想知道是否有可能在它們之間得到某種分隔線。線條分隔線就像他們在列表視圖..

任何幫助嗎?

+0

您可以使用此: <查看 的android:layout_width = 「match_parent」 機器人:layout_height = 「1dp」 android:background =「#000000」/> – elfekz

回答

20

您可以使用一個TextView創建分隔線

例子:

<TextView   
     android:layout_width="fill_parent" 
     android:layout_height="1px" 
     android:background="#DADADA" /> 
+11

不需要是TextView,常規視圖將會很好,渲染速度也會更快。 – Josh

+0

是的,我只是想舉個例子。 – Sam

+5

你應該使用'dp'而不是'px' – rndstr

4

你可以用任何你想要的顏色和

layout_height = "1dp"(或更多,如果necesary)和

layout_width="fill_parent"的背景插入View

相關問題