Android-android用tablelayout如何添加边框

发布于 2016-11-15 07:47:56 字数 790 浏览 1280 评论 2

<TableLayout android:id="@+id/init_table"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:stretchColumns="*" android:background="#00ff00" android:layout_margin="2dip">

<TableRow>
<TextView android:layout_gravity="center" android:padding="3dip"
android:text="经纬度" android:textStyle="bold" />

<TextView android:layout_gravity="center" android:padding="3dip"
android:text="速度" android:textStyle="bold" />

<TextView android:layout_gravity="center" android:padding="3dip"
android:text="操作 " android:textStyle="bold" />
</TableRow>
</TableLayout>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜柠檬 2017-10-09 19:37:56

我是这样做的:
tableitemview.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:gravity="center_vertical"
android:maxHeight="40dp" >

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="3dip"
android:text="经纬度"
android:textStyle="bold" />
<View
android:id="@+id/items_divider_h"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignParentBottom="true"
android:background="#000000" />

<View
android:id="@+id/items_divider_v"
android:layout_width="1dp"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="#000000"/>

</RelativeLayout>

tablelayout:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/init_table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#00ff00"
android:stretchColumns="*" >

<TableRow>

<include
android:layout_height="40dp"
android:layout_gravity="center"
layout="@layout/tableitemview" />

<include
android:layout_height="40dp"
android:layout_gravity="center"
layout="@layout/tableitemview" />

<include
android:layout_height="40dp"
android:layout_gravity="center"
layout="@layout/tableitemview" />
</TableRow>
</TableLayout>

归属感 2016-12-11 21:47:33

在正规的开发中 手动拿view来拼凑一个效果是很少见的 也不好看 还是要上个.9图做背景铺在view上比较好 个人意见

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文