How to style a tablelayout in android

坚强是说给别人听的谎言 提交于 2019-12-01 12:24:40

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

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!