gpt4 book ai didi

android - 如何在 TableLayout 周围添加边框?

转载 作者:IT老高 更新时间:2023-10-28 23:40:37 27 4
gpt4 key购买 nike

下面是我的表格代码。我的屏幕是这样的 http://imgur.com/dFP298o但我想让它看起来像这样 http://imgur.com/YuYJiJx .如何在每行和表格布局周围添加边框?

<TableLayout
android:id="@+id/table2"
android:layout_width="fill_parent"
android:layout_below="@+id/test_button_text23"
android:layout_marginLeft="45dp"
android:layout_marginBottom="25dp"
android:layout_marginRight="45dp"
android:layout_height="fill_parent"
android:stretchColumns="*" >

<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:gravity="left"
android:text="Quantity"
android:textStyle="bold" />

<TextView
android:gravity="center"
android:textStyle="bold"
android:text="Item" />

</TableRow>

</TableLayout>

 

<?xml version="1.0" encoding="utf-8"?>
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
android:id="@+id/localTime"
android:textColor="#000000"
android:gravity="left" />

<TextView
android:id="@+id/apprentTemp"
android:textColor="#000000"
android:gravity="center" />

</TableRow>

 

View row = getLayoutInflater().inflate(R.layout.rows, null);
((TextView) row.findViewById(R.id.localTime)).setText(item.getString("Item"));
((TextView) row.findViewById(R.id.apprentTemp)).setText(item.getString("Quantity"));

最佳答案

为了在表格行和表格布局周围创建边框,您需要创建一个可绘制对象作为边框,然后将其设置为行的背景。

例如:

res/drawable/border.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape= "rectangle">
<solid android:color="#ffffff"/>
<stroke android:width="1dp" android:color="#000000"/>
</shape>

res/layout/your_layout.xml

<TableLayout
android:id="@+id/table2"
android:layout_width="fill_parent"
android:layout_below="@+id/test_button_text23"
android:layout_marginLeft="45dp"
android:layout_marginBottom="25dp"
android:layout_marginRight="45dp"
android:layout_height="fill_parent"
android:stretchColumns="*">

<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/border">

<TextView
android:gravity="left"
android:text="Quantity"
android:background="@drawable/border"
android:textStyle="bold"/>

<TextView
android:gravity="center"
android:textStyle="bold"
android:background="@drawable/border"
android:text="Item" />

</TableRow>

</TableLayout>

这看起来与您发布的图片不完全一样,但可以使用它来获得您想要的东西。

关于android - 如何在 TableLayout 周围添加边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18003021/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com