How to style a tablelayout in android

后端 未结 2 1206
温柔的废话
温柔的废话 2021-01-16 11:09

Can anyone tell me how to add a boarder to a TableLayout in android, like the one below?

http://developer.android.com/images/table_layout.png

相关标签:
2条回答
  • 2021-01-16 12:00

    table layout don't display the use border use view control

    <View android:id="@+id/View01" android:layout_height="1dip"
        android:layout_width="fill_parent" android:background="@color/blue_text"></View>
    

    for vertical line give width

    0 讨论(0)
  • 2021-01-16 12:01

    TableLayout containers do not display border lines for their rows, columns, or cells. You cannot add border to table layout cells which is mentioned in the TableLayout Javadoc.

    0 讨论(0)
提交回复
热议问题