0

请查看以下 XML 文件

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tableLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white"
    android:stretchColumns="*"
    android:padding="5dp" >

    <TableRow
        android:id="@+id/tableRow0"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Select Words To Remove" />
    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" >

        <ScrollView 
            android:id="@+id/scrollView"
            android:layout_width="match_parent"
            android:layout_span="2"
            android:padding="5dp"

            >


        </ScrollView>
    </TableRow>

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="" />

        <Button 
            android:id="@+id/removeWordsBtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Acerto"
            />
    </TableRow>

</TableLayout>

在此的滚动视图中,我正在添加带有文本视图和按钮的表格行,如下所示

ScrollView scrollView = (ScrollView)findViewById(R.id.scrollView);
TableLayout internalTableLayout = new TableLayout(this);


for(int i=0;i<words.size();i++)
        {
            TableRow r = new TableRow(this);
            //r.setId(i);

            TextView t = new TextView(this);


            t.setGravity(Gravity.RIGHT);

            CheckBox c = new CheckBox(this);


            r.addView(t);
            r.addView(c);


            internalTableLayout.addView(r);
        }

        scrollView.addView(internalTableLayout);
}

但是,我得到的是以下

在此处输入图像描述

如您所见,动态生成的元素是左对齐的。我怎样才能使这些正确对齐?

4

1 回答 1

0

解决方案1:

使用RelativeLayout,利用它的属性:

将孩子替换android:layout_alignParentLeft="true"为 forTextViewandroid:layout_alignParentRight="true"for theCheckBox.

这将孩子相对于父母边界定位。您可能还想添加android:layout_centerVertical="true" to each child to center the two vertical within each list item.

解决方案2:

如果您想要它用于表格,请myTable.setColumnStretchable(2, true);在 Java 中使用。和android:stretchColumns="2" in XML

解决方案3:

使用CheckedTextView。我认为这将满足您的需求。

希望有帮助。

于 2013-07-31T15:52:43.360 回答