/**
  * Overridden to restore instance state when device orientation changes. This method is called
  * automatically if you assign an id to the RangeSeekBar widget using the {@link #setId(int)}
  * method.
  */
 @Override
 protected void onRestoreInstanceState(Parcelable parcel) {
   final Bundle bundle = (Bundle) parcel;
   super.onRestoreInstanceState(bundle.getParcelable("SUPER"));
   normalizedMinValue = bundle.getDouble("MIN");
   normalizedMaxValue = bundle.getDouble("MAX");
 }
Esempio n. 2
0
 @Override
 public void onRestoreInstanceState(Parcelable state) {
   GifViewSavedState ss = (GifViewSavedState) state;
   super.onRestoreInstanceState(ss.getSuperState());
   ss.restoreState(getDrawable(), 0);
   ss.restoreState(getBackground(), 1);
 }
 /**
  * Overridden to restore instance state when device orientation changes. This method is called
  * automatically if you assign an id to the RangeSeekBar widget using the {@link #setId(int)}
  * method.
  */
 @Override
 protected void onRestoreInstanceState(Parcelable parcel) {
   final Bundle bundle = (Bundle) parcel;
   super.onRestoreInstanceState(bundle.getParcelable("SUPER"));
   normalizedMinValue = bundle.getDouble("MIN");
   normalizedMaxValue = bundle.getDouble("MAX");
   mValueProcessor = (RangeSeekBarValueProcessor) bundle.getSerializable("VALUE_PROCESSOR");
 }
Esempio n. 4
0
  @Override
  public void onRestoreInstanceState(Parcelable state) {
    if (state instanceof Bundle) {
      Bundle bundle = (Bundle) state;
      normalizedScale = bundle.getFloat("saveScale");
      m = bundle.getFloatArray("matrix");
      prevMatrix.setValues(m);
      prevMatchViewHeight = bundle.getFloat("matchViewHeight");
      prevMatchViewWidth = bundle.getFloat("matchViewWidth");
      prevViewHeight = bundle.getInt("viewHeight");
      prevViewWidth = bundle.getInt("viewWidth");
      imageRenderedAtLeastOnce = bundle.getBoolean("imageRendered");
      super.onRestoreInstanceState(bundle.getParcelable("instanceState"));
      return;
    }

    super.onRestoreInstanceState(state);
  }