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

/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindow.java2047 * @param icicles Save state into this. This is usually indexed by the
2051 private void savePanelState(SparseArray<Parcelable> icicles) { argument
2059 icicles.put(curFeatureId, panels[curFeatureId].onSaveInstanceState());
2067 * @param icicles The state saved by {@link #savePanelState} that needs to be thawed.
2069 private void restorePanelState(SparseArray<Parcelable> icicles) { argument
2072 for (int i = icicles.size() - 1; i >= 0; i--) {
2073 curFeatureId = icicles.keyAt(i);
2080 st.onRestoreInstanceState(icicles.get(curFeatureId));

Completed in 88 milliseconds