请查看以下 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);
}
但是,我得到的是以下
如您所见,动态生成的元素是左对齐的。我怎样才能使这些正确对齐?