使用LayoutInflater,我动态生成多个TableRows,每个TableRows都包含一个复选框。在旋转显示器之前,一切都很顺利。每个CheckBox都获得与最后创建的CheckBox相同的文本和检查状态。
我发现如果我为每一行和每个复选框分配了一个唯一的ID,它就能正常工作(每个复选框都保留其唯一的文本和检查状态)。
如果多次充气同一布局,我是否需要为充气布局中的每个视图分配一个唯一ID?如果你有一个涉及夸大的布局,这肯定会很痛苦。
这是我的代码:
主要活动
public class PrototypeActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
TableLayout tablesLayout = (TableLayout)findViewById(R.id.TableLayout1);
tablesLayout.removeAllViews();
String[] values = new String[] { "Item 1", "Item 2", "Item 3"};
for (int i = 0; i < values.length; i++) {
View view = inflater.inflate(R.layout.row_layout, null, false);
view.setId(i);
CheckBox checkBox = (CheckBox) view.findViewById(R.id.tableCollectCheckBox);
checkBox.setId(values.length+i);
checkBox.setText(values[i]);
tablesLayout.addView(view);
}
tablesLayout.invalidate();
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TableLayout
android:id="@+id/TableLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"/>
</LinearLayout>
</ScrollView>
</FrameLayout>
row_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<TableRow
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="horizontal">
<CheckBox
android:id="@+id/tableCollectCheckBox"
android:text="DataTable"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</TableRow>