android.view.TextureView.onRestoreInstanceState()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(101)

本文整理了Java中android.view.TextureView.onRestoreInstanceState()方法的一些代码示例,展示了TextureView.onRestoreInstanceState()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TextureView.onRestoreInstanceState()方法的具体详情如下:
包路径:android.view.TextureView
类名称:TextureView
方法名:onRestoreInstanceState

TextureView.onRestoreInstanceState介绍

暂无

代码示例

代码示例来源:origin: koral--/android-gif-drawable

@Override
public void onRestoreInstanceState(Parcelable state) {
  if (!(state instanceof GifViewSavedState)) {
    super.onRestoreInstanceState(state);
    return;
  }
  GifViewSavedState ss = (GifViewSavedState) state;
  super.onRestoreInstanceState(ss.getSuperState());
  mRenderThread.mSavedState = ss.mStates[0];
}

代码示例来源:origin: zoff99/ToxAndroidRefImpl

@Override
public void onRestoreInstanceState(Parcelable state)
{
  if (state instanceof Bundle)
  {
    Bundle bundle = (Bundle) state;
    this.minScale = bundle.getInt(MIN_SCALE_KEY);
    this.minScale = bundle.getInt(MAX_SCALE_KEY);
    state = bundle.getParcelable(SUPERSTATE_KEY);
  }
  super.onRestoreInstanceState(state);
}

代码示例来源:origin: Manuiq/ZoomableTextureView

@Override
public void onRestoreInstanceState(Parcelable state) {
  if (state instanceof Bundle) {
    Bundle bundle = (Bundle) state;
    this.minScale = bundle.getInt(MIN_SCALE_KEY);
    this.minScale = bundle.getInt(MAX_SCALE_KEY);
    state = bundle.getParcelable(SUPERSTATE_KEY);
  }
  super.onRestoreInstanceState(state);
}

相关文章