方向更改后Android切换按钮显示错误值

时间:2013-02-20 08:31:06

标签: android orientation tablelayout togglebutton

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

每个切换按钮都有一个从数据库中获取的值,当我第一次创建活动时,值是正常的。但是当我转动设备然后改变方向时,所有的切换按钮都会取“假”值。我打印了我在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中,我打印了值,它们很好,togglebuttons上的显示是错误的,它们都是“假的”。

感谢您的帮助。

3 个答案:

答案 0 :(得分:2)

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

对于同一个问题,这是一个非常好的答案:

ToggleButton change state on orientation changed

答案 1 :(得分:-1)

您必须在Orientation之前保存数据。

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

在Activity中覆盖这些方法。

答案 2 :(得分:-1)

这是一个更简单的解决方案:您只需要将configChanges属性添加到您的活动声明中,如声明的here。这样,您可以在方向更改时阻止活动重新启动。所以在你的清单中你应该有类似

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

或者如果你的buildTarget&gt; = 13

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

修改:如下面的评论所述,这不是最佳解决方案。主要缺点在上面链接的文件说明中报告:

  

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