1

这是我的问题。我有一个简单的活动来设置布局,并在表格布局中添加行(本身在滚动视图中)。这些表格行具有带有文本字段和切换按钮的自定义布局。

每个切换按钮都有一个取自数据库的值,当我第一次创建活动时,这些值都可以。但是当我转动设备然后改变方向时,所有的切换按钮都取“假”值。我打印了我在 Logcat 中设置的值,这些值是好的(数据库中的)。

我以为我想要的布局隐藏在另一个布局后面,但我做了一些测试,文本字段随着新值的变化而变化,所以我真的不明白为什么切换按钮不起作用。

这是代码: TableRow 布局:

<?xml version="1.0" encoding="utf-8"?>
    <TableRow xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
         >
         <RelativeLayout 
             android:id="@+id/relativelayout_row_parametres"
             android:layout_width="fill_parent"
             android:layout_height="50dp"
             android:layout_weight="1.0">
            <TextView 
                android:id="@+id/textview_row_parametres"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="@android:color/black"
                android:textStyle="bold"
                android:textSize="20sp"
                android:layout_marginLeft="2dp"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                />
            <ToggleButton
                android:id="@+id/togglebutton_row_parametres"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="2dp"
                android:textOn="@string/togglebutton_on"
                android:textOff="@string/togglebutton_off" />
        </RelativeLayout>
    </TableRow>

活动布局:

<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical">

        <ImageView style="@style/header" />

        <LinearLayout 
            android:layout_width="fill_parent" android:layout_height="0dp"
            android:layout_weight="0.8"
            android:background="@drawable/gradient_bg"
            android:padding="10dip"
            android:orientation="vertical">

          <ScrollView
            android:layout_width="fill_parent" android:layout_height="0dp"
            android:layout_weight="0.85"
            android:fillViewport="true"
            android:padding="10dip"
            android:layout_gravity="center">

              <TableLayout 
                  android:id="@+id/tablelayout_parametres"
                  android:layout_width="fill_parent"
                  android:layout_height="wrap_content"
                  android:background="@drawable/cornered_bg"
                  android:paddingTop="5dip"
                  android:paddingBottom="5dip">

              </TableLayout>

          </ScrollView>
          <Button 
              android:id="@+id/button_parametres_accept"
              android:gravity="center"
              android:text="@string/accept_changes"
              android:layout_width="wrap_content"
              android:layout_height="0dp"
              android:layout_weight="0.15"
              android:layout_gravity="center_horizontal" />
          </LinearLayout>
    </LinearLayout>

和活动代码:

public class Parameters extends Activity {

    @Override
    protected void onDestroy() {
        // TODO Auto-generated method stub
        super.onDestroy();
    }

    @Override
    protected void onResume() {
        // TODO Auto-generated method stub
        super.onResume();
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        final Map<String, Boolean> changes = new HashMap<String, Boolean>();
        final Context ctx = getApplicationContext();
        LanguageManager.updateConfig(this);

        setContentView(R.layout.parametres);

        CountryDB[] countries = Database.instance(getApplicationContext()).getCountries();

        TableLayout tabLayout = (TableLayout) findViewById(R.id.tablelayout_parametres);
        for(int i =0; i<countries.length; i++){
            TableRow newRow = (TableRow) getLayoutInflater().inflate(R.layout.row_parametres, null);
            TextView textView = (TextView) newRow.findViewById(R.id.textview_row_parametres);

            ToggleButton toggleButton = (ToggleButton) newRow.findViewById(R.id.togglebutton_row_parametres);
            toggleButton.setChecked(countries[i].isToSynchronize());
            toggleButton.setTag(countries[i]);
            Log.e("setChecked",""+toggleButton.getId()+"/"+countries[i].isToSynchronize());

            textView.setText(countries[i].getLabel());

            toggleButton.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View v) {
                    CountryDB countryTemp = (CountryDB) v.getTag();
                    changes.put(countryTemp.getLabel(), ((ToggleButton)v).isChecked());
                }
            });

            tabLayout.addView(newRow);

            TableRow rowDivider = (TableRow) getLayoutInflater().inflate(R.layout.row_divider, null);
            tabLayout.addView(rowDivider);
        }

        Button buttonValidation = (Button) findViewById(R.id.button_parameters_accept);
        buttonValidation.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Iterator<String> iterator = changes.keySet().iterator();
                while(iterator.hasNext()){
                    String stringTemp = iterator.next();
                    Database.instance(ctx).updateCountry(stringTemp, changes.get(stringTemp));
                }

                Intent intent = new Intent(ctx, Splash.class);

                String result = "restart";
                String from = "parameters";
                Intent returnIntent = new Intent();
                returnIntent.putExtra("result", result);
                returnIntent.putExtra("from", from);
                setResult(RESULT_OK, returnIntent);

                startActivity(intent);
            }
        });

    }

}

在 Log.e 中,我打印了这些值,它们很好,切换按钮上的显示是错误的,它们都是“假的”。

谢谢你的帮助。

4

3 回答 3

2

在 onCreate() 和 onResume() 之间,Android 会尝试恢复切换按钮的旧状态。由于他们没有唯一的 ID,Android 不会成功,一切都是假的。尝试将您的 setChecked() 调用移动到 onResume() (也许 onStart() 也可以)。

这是同一个问题的一个很好的答案:

ToggleButton 在方向改变时改变状态

于 2013-02-20T08:59:54.523 回答
-1

您必须在定向之前保存数据。

Android有方法onSaveImstamceState(Bundle outState)onRestoreInstanceState(BundleInstaceState)

在 Activity 中覆盖这些方法。

于 2013-02-20T08:46:02.977 回答
-1

有一个更简单的解决方案:您只需将 configChanges 属性添加到您的活动声明中,就像此处所述。这样,您可以防止 Activity 在方向更改时重新启动。所以在你的清单中你应该有类似的东西

<activity android:name=".Parameters"
      android:configChanges="orientation|keyboardHidden">

或者如果你的 buildTarget>=13

<activity android:name=".Parameters"
      android:configChanges="orientation|keyboardHidden|screenSize">

编辑:就像下面评论中报道的那样,这不是最佳解决方案。上面链接的文档的注释中报告了主要缺点:

注意:自己处理配置更改会使使用替代资源变得更加困难,因为系统不会自动为您应用它们。当您必须避免由于配置更改而重新启动时,应将此技术视为最后的手段,并且不建议将其用于大多数应用程序

于 2013-02-20T09:05:41.690 回答