我有一个CustomButton类(扩展了LinearLayout),在其中我为包含ToggleButton的布局充气(实际上这比较复杂,但是我在这里简化了问题)。

public class CustomButton extends LinearLayout {

    private ToggleButton toggleOnOffButton;

    public CustomButton(Context context, AttributeSet attrs) {
        super(context, attrs);
        LayoutInflater.from(context).inflate(R.layout.custom_button_layout, this);
    }

    @Override
    protected void onFinishInflate() {
        toggleOnOffButton = (ToggleButton) findViewById(R.id.toggle_on_off_button);
        super.onFinishInflate();
    }

    public ToggleButton getToggleOnOffButton() {
        return toggleOnOffButton;
    }
}


custom_button_layout.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content">

    <ToggleButton android:id="@+id/toggle_on_off_button"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:textOff="Off"
                  android:textOn="On"
                  android:layout_alignParentRight="true"
            />
</RelativeLayout>


我有一个活动,在其中我用2 CustomButton -s为布局增加了一个布局。
第一个toggleButton的开/关状态保存在共享首选项中,我从那里以onCreate方法加载值。

public class FirstActivity extends Activity
{
    private CustomButton customButton;
    private ToggleButton toggleBut;

    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        customButton = (CustomButton)findViewById(R.id.toggleButton);
        toggleBut = customButton.getToggleOnOffButton();

        boolean saved = loadPreferences("toggleBut");
        toggleBut.setChecked(saved);
        toggleBut.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                boolean checked = toggleBut.isChecked();
                savePreferences("toggleBut", checked);
            }
        });
    }

    private void savePreferences(String key, boolean value){
        SharedPreferences sharedPreferences = getPreferences(MODE_PRIVATE);
        SharedPreferences.Editor editor = sharedPreferences.edit();
        editor.putBoolean(key, value);
        editor.commit();
    }

    private boolean loadPreferences(String key){
        SharedPreferences sharedPreferences = getPreferences(MODE_PRIVATE);
        return sharedPreferences.getBoolean(key, true);
    }
}


main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent">
    <com.example.example.cs.ssd.custom.CustomButton
            android:id="@+id/toggleButton"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            />

    <com.example.example.cs.ssd.custom.CustomButton
            android:id="@+id/toggleButton2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            />
</LinearLayout>


当我启动应用程序时,第一个toggleButton打开。当我改变屏幕的方向时,第一个toggleButton会自动关闭,即使saved的值为true并称为toggleBut.setChecked(saved);,我认为这与我创建的CutomButton有关,因为如果main.xml布局仅包含1个CustomButton此问题不会重现。
我不确定自己在做什么错...
这是带有上述代码的存档(作为项目):archive

最佳答案

如果要让CustomButton在方向更改后保留其当前状态,只需重写onSaveInstanceState()和onRestoreInstanceState()。

一个办法

我遍历了您的代码,发现toggleBut的状态在onActivityCreated()之后但在onStart()之前被更改。为了避免这些方法中的任何一个覆盖您的切换设置,我只是将这些行从onViewCreated()中移出了:

boolean saved = loadPreferences("toggleBut");
toggleBut.setChecked(saved);


并将它们放在onResume()中。希望有帮助!

更好的解决方案

当系统尝试恢复默认的saveInstanceState(可能在Fragment.onActivityCreated()中)时,您的ToggleButton设置将被覆盖。

在CustomButton中,重写这些功能,如下所示:

@Override
protected Parcelable onSaveInstanceState() {
    Bundle state = new Bundle();
    state.putParcelable("default", super.onSaveInstanceState());
    state.putParcelable("toggle", toggleOnOffButton.onSaveInstanceState());
    return state;
}

@Override
protected void onRestoreInstanceState(Parcelable state) {
    Bundle bundle = (Bundle) state;
    super.onRestoreInstanceState(bundle.getParcelable("default"));
    toggleOnOffButton.onRestoreInstanceState(bundle.getParcelable("toggle"));
};


请理解,系统将仍然更改ToggleButton状态,而无需再进行其他操作。但是,让我尝试解释发生了什么:


onActivityCreated(Bundle savedInstanceState)通过调用'onRestoreInstanceState(Bundle savedInstanceState)`将其savedInstanceState传递给每个布局元素。
onRestoreInstanceState()首先从布局的根元素开始,然后遍历布局的层次结构(在这种情况下,它最后设置每个ToggleButton的选中状态)。
由于默认方法显然不起作用,因此我们需要为ToggleButtons定义自己的保存/还原方法。否则,我们在系统调用onRestoreInstanceState()之前所做的任何更改都会被系统再次更改...


因此,最后,我们将以下行添加到CustomButton.onFinishInflate()中,以将ToggleButtons从此默认行为中排除:

toggleOnOffButton.setSaveEnabled(false);


瞧,您的CustomButtons会自动保留其状态。

关于android - ToggleButton更改方向的状态已更改,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11213864/

10-12 00:27