Example #1
0
  @Override
  public void onRestoreInstanceState(Parcelable state) {
    if (state instanceof Bundle) {
      Bundle bundle = (Bundle) state;

      // Restore our state from the bundle
      mRestoreX = Integer.valueOf((bundle.getInt(BUNDLE_ID_CURRENT_X)));

      // Restore out parent's state from the bundle
      super.onRestoreInstanceState(bundle.getParcelable(BUNDLE_ID_PARENT_STATE));
    }
  }