如何在android中的tablelayout中为tablerow提供边框?

时间:2011-04-06 06:08:05

标签: android android-layout android-tablelayout

我需要在TableRow中显示TableLayout周围的边框。

我该怎么办?

1 个答案:

答案 0 :(得分:32)

我提出一个想法 - >使用形状标记

创建一个xml文件

喜欢这个

<?xml version="1.0" encoding="UTF-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android">
  <solid android:color="#FFFFFF"/>
  <stroke android:width="2dp" android:color="#515151"/>
  <corners android:radius="3dp" />
  <padding android:left="10dp" android:top="5dp"
    android:right="10dp" android:bottom="5dp" />
</shape>

在您的表格布局的 android:background =“@ drawable / xmlFilename”中设置此xml文件

它给出了tablelayout周围的边框