Searched refs:icicles (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/policy/
H A DPhoneWindow.java2073 * @param icicles Save state into this. This is usually indexed by the
2077 private void savePanelState(SparseArray<Parcelable> icicles) { argument
2085 icicles.put(curFeatureId, panels[curFeatureId].onSaveInstanceState());
2093 * @param icicles The state saved by {@link #savePanelState} that needs to be thawed.
2095 private void restorePanelState(SparseArray<Parcelable> icicles) { argument
2098 for (int i = icicles.size() - 1; i >= 0; i--) {
2099 curFeatureId = icicles.keyAt(i);
2106 st.onRestoreInstanceState(icicles.get(curFeatureId));

Completed in 84 milliseconds