gpt4 book ai didi

android - 我如何使用布局 XML 文件中定义的 View 作为模板以编程方式创建 View

转载 作者:行者123 更新时间:2023-11-30 04:53:07 24 4
gpt4 key购买 nike

我想填充一个表,通过编程方式在布局 xml 文件中定义。我已经定义了表,其中一行定义了它的标题,并设置了所有属性。现在我想知道一种方法,这样我就可以用新内容复制表中的标题行。

我尝试使用 inflator inflate(int,view) 方法,但在运行时出现错误。

这是定义表格的布局文件的 XML 代码

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="0,1,2"
android:id="@+id/tLayout"
>
<TableRow
android:layout_width="fill_parent"
android:id="@+id/tRow">
<TextView
android:id="@+id/name"
android:padding="3dip"
android:gravity="left"
android:text="Name"
/>
<TextView
android:id="@+id/address"
android:padding="3dip"
android:gravity="left"
android:text="Address"
/>
<TextView
android:id="@+id/age"
android:padding="3dip"
android:gravity="left"
android:text="Age"
/>
</TableRow>
</TableLayout>

最佳答案

第 1 步:将该行拉出到一个单独的布局文件中

第 2 步:在需要行时扩充布局文件

第 3 步:在 TableLayout 上调用 addView() 以添加膨胀的行

关于android - 我如何使用布局 XML 文件中定义的 View 作为模板以编程方式创建 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2350299/

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