在尝试在屏幕旋转后恢复CheckBox
es列表的状态时,我遇到了一些非常意外(并且令人难以置信的令人沮丧)的功能。我想我首先会尝试在没有代码的情况下给出文本解释,以防有人能够在没有所有血腥细节的情况下确定解决方案。如果有人需要更多细节我可以发布代码。
我有一个包含View
es的复杂CheckBox
的滚动列表。在屏幕旋转后,我没有成功恢复这些复选框的状态。我已实施onSaveInstanceState
并已成功将所选复选框列表转移到onCreate
方法。这是通过将long[]
数据库ID传递给Bundle
来处理的。
在onCreate()
中,我检查Bundle
是否有ids数组。如果数组在那里,我用它来确定在构建列表时要检查的复选框。我已经创建了许多测试方法,并确认已根据id数组正确设置了复选框。作为最后一项检查,我正在检查onCreate(
末尾的所有复选框的状态。一切看起来都不错......除非我旋转屏幕。
当我旋转屏幕时,会发生以下两种情况之一:1)如果选中任意数量的复选框(最后一个除外),则旋转后所有复选框都将关闭。 2)如果在旋转前选中了最后一个复选框,则旋转后所有复选框都将被检查。
就像我说的那样,我会检查onCreate()
最末端的方框状态。问题是,根据我在轮换之前选择的内容,onCreate
末尾的方框状态正确。但是,屏幕上框的状态并不反映这一点。
此外,我已经实现了每个复选框的setOnCheckChangedListener()
,并确认在我的onCreate
方法返回后,我的复选框'状态'正在被更改。
任何人都知道发生了什么事?在我的onCreate
方法返回后,为什么我的复选框状态会发生变化?
提前感谢您的帮助。我一直试图将这种情况脱气几天。在我发现我的复选框显然在我自己的代码之外的某个地方发生变化后,我觉得是时候问问了。
答案 0 :(得分:48)
我有类似的问题。应用程序屏幕上有几个复选框 旋转手机应用程序后,所有复选框的“手动”设置值 此代码在onStart()中执行 但是在屏幕上,所有复选框都在屏幕上设置了“最后一个复选框”的值 Android正在调用onRestoreInstanceState(..)并以某种方式将所有复选框视为“一个”[最后一个屏幕]。
解决方案是禁用“恢复实例状态”:
<RadioButton
...
android:saveEnabled="false" />
答案 1 :(得分:8)
大家。看起来我想出来了。复选框的状态在onRestoreInstanceState(Bundle)中被更改。此方法在onCreate()之后调用(更准确地说,在onStart()之后),并且是Android建议恢复状态的另一个地方。
现在,我不知道为什么我的复选框在onRestoreInstanceState中被更改,但至少我知道问题发生的地方。令人惊讶的是,当我覆盖onRestoreInstanceState并且什么都不做(没有调用super.onRestoreInstanceState)时,整个Activity都能正常工作。
如果有人能告诉我为什么这个方法中的复选框选择状态正在改变,我非常想知道。在我看来,这看起来像Android代码本身的一个错误。
答案 2 :(得分:2)
如果您发现有关此问题的更多信息,请告知我们。我基本上面对这个完全相同的问题,只有覆盖onRestoreInstanceState()
才有效。很奇怪。
答案 3 :(得分:1)
Rpond,我没有覆盖onResume,所以我不认为这是问题所在。以下是每个人都可以看到的活动和相关布局。在代码中,您将看到许多Log.d语句(在某一点上甚至还有更多。)使用这些Log语句,我能够验证代码的工作方式与我期望的完全相同。另外,请注意我添加到每个CheckBox的onCheckChangedListener。它所做的就是打印一条Log语句,告诉我其中一个CheckBox的状态发生了变化。通过这个,我能够确定在onCreate返回后CheckBoxes的状态被改变了。你会看到我在onCreate结束时调用的是examineCheckboxes()。由此产生的Log语句不是旋转后在我的屏幕上显示的内容,我可以看到我的框的状态随后被更改(因为onCheckChangedListener。)
SelectItems.java:
public class SelectItems extends Activity {
public static final int SUCCESS = 95485839;
public static final String ITEM_LIST = "item list";
public static final String ITEM_NAME = "item name";
// Save state constants
private final String SAVE_SELECTED = "save selected";
private DbHelper db;
private ArrayList<Long> selectedIDs;
ArrayList<CheckBox> cboxes = new ArrayList<CheckBox>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.select_items);
// Create database helper
db = new DbHelper(this);
db.open();
initViews(savedInstanceState);
examineCheckboxes();
}
private void initViews(Bundle savedState) {
initButtons();
initHeading();
initList(savedState);
}
private void initButtons() {
// Setup event for done button
Button doneButton = (Button) findViewById(R.id.done_button);
doneButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
done();
}
});
// Setup event for cancel button
Button cancelButton = (Button) findViewById(R.id.cancel_button);
cancelButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
cancel();
}
});
}
private void initHeading() {
String itemName = getIntent().getExtras().getString(ITEM_NAME);
TextView headingField = (TextView) findViewById(R.id.heading_field);
if (itemName.equals("")) {
headingField.setText("No item name!");
} else {
headingField.setText("Item name: " + itemName);
}
}
private void initList(Bundle savedState) {
// Init selected id list
if (savedState != null && savedState.containsKey(SAVE_SELECTED)) {
long[] array = savedState.getLongArray(SAVE_SELECTED);
selectedIDs = new ArrayList<Long>();
for (long id : array) {
selectedIDs.add(id);
}
Log.d("initList", "restoring from saved state");
logIDList();
} else {
selectedIDs = (ArrayList<Long>) getIntent().getExtras().get(
ITEM_LIST);
Log.d("initList", "using database values");
logIDList();
}
// Begin building item list
LayoutInflater li = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LinearLayout scrollContent = (LinearLayout) findViewById(R.id.scroll_content);
Cursor cursor = db.getAllItems();
startManagingCursor(cursor);
cursor.moveToFirst();
// For each Item entry, create a list element
while (!cursor.isAfterLast()) {
View view = li.inflate(R.layout.item_element, null);
TextView name = (TextView) view.findViewById(R.id.item_name);
TextView id = (TextView) view.findViewById(R.id.item_id);
CheckBox cbox = (CheckBox) view.findViewById(R.id.checkbox);
name.setText(cursor.getString(cursor
.getColumnIndexOrThrow(DbHelper.COL_ITEM_NAME)));
final long itemID = cursor.getLong(cursor
.getColumnIndexOrThrow(DbHelper.COL_ID));
id.setText(String.valueOf(itemID));
// Set check box states based on selectedIDs array
if (selectedIDs.contains(itemID)) {
Log.d("set check state", "setting check to true for " + itemID);
cbox.setChecked(true);
} else {
Log.d("set check state", "setting check to false for " + itemID);
cbox.setChecked(false);
}
cbox.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Log.d("onClick", "id: " + itemID + ". button ref: "
+ ((CheckBox) v));
checkChanged(itemID);
}
});
//I implemented this listener just so I could see when my
//CheckBoxes were changing. Through this I was able to determine
//that my CheckBoxes were being altered outside my own code.
cbox.setOnCheckedChangeListener(new OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton arg0, boolean arg1) {
Log.d("check changed", "button: " + arg0 + " changed to: "
+ arg1);
}
});
cboxes.add(cbox);
scrollContent.addView(view);
cursor.moveToNext();
}
cursor.close();
examineCheckboxes();
}
private void done() {
Intent i = new Intent();
i.putExtra(ITEM_LIST, selectedIDs);
setResult(SUCCESS, i);
this.finish();
}
private void cancel() {
db.close();
finish();
}
private void checkChanged(long itemID) {
Log.d("checkChaged", "checkChanged for: "+itemID);
if (selectedIDs.contains(itemID)) {
selectedIDs.remove(itemID);
} else {
selectedIDs.add(itemID);
}
}
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
long[] array = new long[selectedIDs.size()];
for (int i = 0; i < array.length; i++) {
array[i] = selectedIDs.get(i);
}
outState.putLongArray(SAVE_SELECTED, array);
}
//Debugging method used to see what is in selectedIDs at any point in time.
private void logIDList() {
String list = "";
for (long id : selectedIDs) {
list += id + " ";
}
Log.d("ID List", list);
}
//Debugging method used to check the state of all CheckBoxes.
private void examineCheckboxes(){
for(CheckBox cbox : cboxes){
Log.d("Check Cbox", "obj: "+cbox+" checked: "+cbox.isChecked());
}
}
}
select_items.xml:
<?xml version="1.0" encoding="utf-8"?>
<TextView android:id="@+id/heading_field"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:layout_marginBottom="10dip" android:textSize="18sp"
android:textStyle="bold" />
<LinearLayout android:id="@+id/button_layout"
android:orientation="horizontal" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentBottom="true">
<Button android:id="@+id/done_button" android:layout_weight="1"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Done" />
<Button android:id="@+id/cancel_button" android:layout_weight="1"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Cancel" />
</LinearLayout>
<ScrollView android:orientation="vertical"
android:layout_below="@id/heading_field" android:layout_above="@id/button_layout"
android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:id="@+id/scroll_content"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>
</ScrollView>
item_element.xml:
<?xml version="1.0" encoding="utf-8"?>
<CheckBox android:id="@+id/checkbox" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentRight="true"
android:layout_marginRight="5dip" />
<TextView android:id="@+id/item_name" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:textSize="18sp"
android:layout_centerVertical="true" android:layout_toLeftOf="@id/checkbox"
android:layout_alignParentLeft="true" />
<TextView android:id="@+id/item_id" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:visibility="invisible" />
答案 4 :(得分:1)
问题可能是每当调用onRestoreInstanceState(Bundle)
时,它会将您应用的部分或全部“设置”重置为启动“默认值”。解决此问题的最佳方法是通过应用程序生命周期方法调用和管理。此外,只要您的应用中有任何内容发生变化而您不想放松,请将更改保存到saveInstanceState(Bundle)
或创建自己的Bundle()
以暂时保留更改,直到您可以保留更改为止一个文件或其他东西,它很容易通过活动之间的Intent传递一个bundle。如何保存需要保存的内容,具体取决于您需要保留“设置”的时间。
答案 5 :(得分:1)
我也遇到过这种情况。您应该在onRestoreInstanceState()而不是onCreate()中恢复复选框状态。
当屏幕方向改变时,活动被破坏,onCreate()之后调用onRestoreInstanceState()。由于onRestoreInstanceState()的父/默认实现会自动恢复带有ID的视图中的状态,它会在onCreate()之后恢复你的复选框并破坏它们 - 显然是因为它们具有相同的ID(框架错误?)。
http://developer.android.com/reference/android/app/Activity.html
答案 6 :(得分:1)
您还可以使用onSaveInstanceState(Bundle savedInstanceState)
和onRestoreInstanceState(Bundle savedInstanceState)
例如
@Override
public void onSaveInstanceState(Bundle savedInstanceState)
{
// EditTexts text
savedInstanceState.putString("first_et",((EditText)findViewById(R.id.et_first)).getText().toString());
// EditTexts text
savedInstanceState.putInt("first_et_v", ((EditText)findViewById(R.id.et_first)).getVisibility());
super.onSaveInstanceState(savedInstanceState);
}
@Override
public void onRestoreInstanceState(Bundle savedInstanceState)
{
super.onRestoreInstanceState(savedInstanceState);
// EditTexts text
((EditText)findViewById(R.id.et_first)).setText(savedInstanceState.getString("first_et"));
// EditText visibility
((EditText)findViewById(R.id.et_first)).setVisibility(savedInstanceState.getInt("first_et_v"));
}
答案 7 :(得分:0)
有一种解决方案更容易解释。
如果未在其上设置“id”属性,则Android CHECKBOXES和RADIOBUTTON以及RADIOGROUPS会表现得很奇怪。
我的代码中存在完全相同的问题,在我将复选框上的id放入后,它开始工作,而不必禁用任何超类方法。