当用户旋转屏幕时,我需要保存我的应用程序实例。我使用了切换按钮“inst”、图像按钮“播放”和单选按钮“sp”。这是我的代码:
public void onSaveInstanceState(Bundle outState)
{
outState.putBoolean("play",play);
outState.putBoolean("inst", inst);
outState.putBoolean("sp",sp); /* shows the error "the method put boolean in
type bundle is not applicable for radio buttons"*/
super.onSaveInstanceState(outState);
}
那么我们应该为单选按钮使用什么?当我用谷歌搜索时,我得到的结果说我们必须使用偏好活动。然后在我的情况下,我必须更改我当前布局中的所有元素。任何其他解决方案都会有很大帮助。