2

我试图动态地膨胀我的行,但是当我改变平板电脑的方向时,我得到了所有未选中的内容,并且复选框名称填充了最后一行的信息。例如,假设我有两个复选框(两行),第一个说“你好”,第二个说“再见”。如果我旋转平板电脑,我会得到第一个和第二个名为“再见”的复选框,并且所有内容都未选中。

<ScrollView 
    android:layout_width="match_parent"
    android:layout_height="match_parent">


            <TableLayout
                android:id="@+id/tableLayoutList"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" /> 

</ScrollView>

我有这样定义的行(mRowLayout.xml):

<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayoutRow"
android:layout_width="match_parent"
android:layout_height="match_parent">

    <CheckBox
        android:id="@+id/checkBoxServEmail"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</TableRow>

然后我使用以下代码来扩充我的行:

private void fillTable(View v, Cursor c) {

TableLayout ll = (TableLayout) v.findViewById(R.id.tableLayoutList);

View mTableRow = null;
int i = 0;
while(!c.isAfterLast()){
    i++;
    mTableRow = (TableRow) View.inflate(getActivity(), R.layout.mRowLayout, null);

     CheckBox cb = (CheckBox)mTableRow.findViewById(R.id.checkBoxServEmail);

             Log.e("debugging", "email: "+c.getString(c.getColumnIndex(Serv.EMAIL)));
     cb.setText( c.getString(c.getColumnIndex(Serv.EMAIL)));


     mTableRow.setTag(i);

    //add TableRows to TableLayout
    ll.addView(mTableRow);

    c.moveToNext();
}
}

有谁知道我为什么会有这种奇怪的行为?另请注意,我在我的日志猫中放置了一个用于打印的 Log.e,这是怎么回事。每次更改设备的方向时,我都会收到“你好”和“再见”,但 setText 似乎无法正常工作。

请帮忙,我已经解决这个问题几个小时了,我不明白:(

4

1 回答 1

1

当您更改设备方向时,活动将被销毁并重新创建。你应该使用

onSaveInstanceState

回调以保存您当前的 UI 数据。并使用 onCreate 来恢复它:

if (savedInstanceState == null) {

    // first run

} else {

    // not first run

}
于 2013-06-22T01:17:51.257 回答