我需要在TableRow
中显示TableLayout
周围的边框。
我该怎么办?
答案 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周围的边框