คำตอบที่นี่ยอดเยี่ยมอยู่แล้ว แต่ไม่จำเป็นต้องใช้กับ ViewGroups แบบกำหนดเอง หากต้องการให้มุมมองที่กำหนดเองทั้งหมดเพื่อรักษาสถานะของพวกเขาคุณต้องแทนที่onSaveInstanceState()
และonRestoreInstanceState(Parcelable state)
ในแต่ละชั้นเรียน คุณต้องตรวจสอบให้แน่ใจว่าพวกเขาทั้งหมดมีรหัสที่เป็นเอกลักษณ์ไม่ว่าพวกเขาจะสูงเกินจริงจาก xml หรือเพิ่มโดยทางโปรแกรม
สิ่งที่ฉันเกิดขึ้นนั้นเป็นเหมือนคำตอบของ Kobor42 แต่ข้อผิดพลาดยังคงอยู่เพราะฉันเพิ่ม Views ไปยัง ViewGroup ที่กำหนดเองโดยทางโปรแกรมและไม่กำหนดรหัสที่ไม่ซ้ำกัน
ลิงก์ที่ใช้ร่วมกันโดย mato จะใช้งานได้ แต่หมายความว่าไม่มีการดูแต่ละรายการจัดการสถานะของตนเอง - รัฐทั้งหมดจะถูกบันทึกไว้ในวิธีการของ ViewGroup
ปัญหาคือเมื่อเพิ่ม ViewGroups เหล่านี้หลายรายการลงในเค้าโครงรหัสขององค์ประกอบจาก xml จะไม่ซ้ำกันอีกต่อไป (หากถูกกำหนดใน xml) ที่รันไทม์คุณสามารถเรียกใช้เมธอดสแตติกView.generateViewId()
เพื่อรับ id เฉพาะสำหรับมุมมอง สามารถใช้ได้จาก API 17 เท่านั้น
นี่คือรหัสของฉันจาก ViewGroup (เป็นนามธรรมและ mOriginalValue เป็นตัวแปรชนิด):
public abstract class DetailRow<E> extends LinearLayout {
private static final String SUPER_INSTANCE_STATE = "saved_instance_state_parcelable";
private static final String STATE_VIEW_IDS = "state_view_ids";
private static final String STATE_ORIGINAL_VALUE = "state_original_value";
private E mOriginalValue;
private int[] mViewIds;
// ...
@Override
protected Parcelable onSaveInstanceState() {
// Create a bundle to put super parcelable in
Bundle bundle = new Bundle();
bundle.putParcelable(SUPER_INSTANCE_STATE, super.onSaveInstanceState());
// Use abstract method to put mOriginalValue in the bundle;
putValueInTheBundle(mOriginalValue, bundle, STATE_ORIGINAL_VALUE);
// Store mViewIds in the bundle - initialize if necessary.
if (mViewIds == null) {
// We need as many ids as child views
mViewIds = new int[getChildCount()];
for (int i = 0; i < mViewIds.length; i++) {
// generate a unique id for each view
mViewIds[i] = View.generateViewId();
// assign the id to the view at the same index
getChildAt(i).setId(mViewIds[i]);
}
}
bundle.putIntArray(STATE_VIEW_IDS, mViewIds);
// return the bundle
return bundle;
}
@Override
protected void onRestoreInstanceState(Parcelable state) {
// We know state is a Bundle:
Bundle bundle = (Bundle) state;
// Get mViewIds out of the bundle
mViewIds = bundle.getIntArray(STATE_VIEW_IDS);
// For each id, assign to the view of same index
if (mViewIds != null) {
for (int i = 0; i < mViewIds.length; i++) {
getChildAt(i).setId(mViewIds[i]);
}
}
// Get mOriginalValue out of the bundle
mOriginalValue = getValueBackOutOfTheBundle(bundle, STATE_ORIGINAL_VALUE);
// get super parcelable back out of the bundle and pass it to
// super.onRestoreInstanceState(Parcelable)
state = bundle.getParcelable(SUPER_INSTANCE_STATE);
super.onRestoreInstanceState(state);
}
}