gpt4 book ai didi

android - 在两个 TableRow 之间插入一个或多个新的 TableRow

转载 作者:行者123 更新时间:2023-11-29 13:57:56 27 4
gpt4 key购买 nike

我正在开发 Android 应用程序。一个 Activity 有一个像这样的 TableLayout:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ereportfillscroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/EReportTableLayout"
android:layout_margin="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*">

<TableRow>
<TextView
android:id="@+id/txtGenInfo"
android:layout_span="8"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/layout_title_general_information"
android:textAppearance="?android:attr/textAppearanceLarge" />
</TableRow>
<TableRow>
<TextView
android:id="@+id/txtPONo"
android:layout_weight=".125"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="@string/layout_po_no"
android:textAppearance="?android:attr/textAppearanceMedium" />
</TableRow>

<!-- MORE ROWS -->

</TableLayout>
<Button
android:id="@+id/btnPhoto"
android:onClick="onTakeAPhotoClick"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Take a photo" />

</LinearLayout>
</ScrollView>

例如,我需要以编程方式在第一行和第二行之间插入另一个 TableRow。我该怎么做=

最佳答案

你可以这样做:

TableLayout tl = (TableLayout) findViewById(R.id.EReportTableLayout);
tl.addView(tableRowToInsert, index);

关于android - 在两个 TableRow 之间插入一个或多个新的 TableRow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11050237/

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