0

我正在开发一个需要添加动态行的应用程序。我面临以下问题。

  1. 我有 3 列,并且需要它们中的每一列具有相等的宽度。表格列根据文本长度进行拉伸,这使应用程序变得混乱。

  2. 我添加了 ScrollView 但它不能正常工作。添加大约五行多余的行后,只有第一列可见。

布局由 2 部分组成。表格布局出现在第二部分。这是我的 XML 布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mabs"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible" >

<ImageButton
    android:id="@+id/shw"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_marginBottom="24dp"
    android:background="@null"
    android:src="@drawable/shw" />

<ImageView
    android:id="@+id/lbl"
    android:layout_width="match_parent"
    android:layout_height="75dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/moolbl" />

<EditText
    android:id="@+id/tf"
    android:layout_width="192dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/lbl"
    android:layout_marginTop="15dp"
    android:ems="10"/>
<ImageButton
    android:id="@+id/moob"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_below="@+id/lbl"
    android:background="@null"
    android:src="@drawable/moo" />



<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@id/shw"
    android:layout_alignParentLeft="true"
    android:layout_below="@id/moob">
    <TableLayout
        android:id="@+id/tbl"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/tf"
        android:layout_marginTop="51dp"
        android:scrollbars="vertical" >

        <TableRow
            android:id="@+id/tblr"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal" >

            <TextView
                android:id="@+id/word"
                android:layout_weight="1"
                android:text="  GUESS"
                android:textStyle="bold"
                android:typeface="sans" />

            <TextView
                android:id="@+id/bull"
                android:layout_weight="1"
                android:text="  WORD"
                android:textStyle="bold"
                android:typeface="sans" />

            <TextView
                android:id="@+id/cow"
                android:layout_weight="1"
                android:text="  MEAN"
                android:textStyle="bold"
                android:typeface="sans" />
        </TableRow>
    </TableLayout>
</ScrollView>

在代码部分(添加动态行)

TableRow tr = new TableRow(this);
LayoutParams lp = new LayoutParams(LayoutParams.FILL_PARENT,
    LayoutParams.WRAP_CONTENT);
lp.weight = 1; 
lp.gravity = Gravity.CENTER_HORIZONTAL;
tr.setLayoutParams(lp);
TextView tvLeft = new TextView(this);
tvLeft.setLayoutParams(lp);
tvLeft.setText(tft);
TextView tvCenter = new TextView(this);
tvCenter.setLayoutParams(lp);
tvCenter.setText(word + "");
TextView tvRight = new TextView(this);
tvRight.setLayoutParams(lp);
tvRight.setText(mean + "");
tr.addView(tvLeft);
tr.addView(tvCenter);
tr.addView(tvRight);

tbl.addView(tr, new TableLayout.LayoutParams(LayoutParams.FILL_PARENT,
    LayoutParams.WRAP_CONTENT));
4

1 回答 1

0

使用自定义ListView并将您的表格布局用作自定义 ListItem

于 2013-02-22T11:33:55.053 回答