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

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

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

TextureView.onRestoreInstanceState介绍

暂无

代码示例

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

  1. @Override
  2. public void onRestoreInstanceState(Parcelable state) {
  3. if (!(state instanceof GifViewSavedState)) {
  4. super.onRestoreInstanceState(state);
  5. return;
  6. }
  7. GifViewSavedState ss = (GifViewSavedState) state;
  8. super.onRestoreInstanceState(ss.getSuperState());
  9. mRenderThread.mSavedState = ss.mStates[0];
  10. }

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

  1. @Override
  2. public void onRestoreInstanceState(Parcelable state)
  3. {
  4. if (state instanceof Bundle)
  5. {
  6. Bundle bundle = (Bundle) state;
  7. this.minScale = bundle.getInt(MIN_SCALE_KEY);
  8. this.minScale = bundle.getInt(MAX_SCALE_KEY);
  9. state = bundle.getParcelable(SUPERSTATE_KEY);
  10. }
  11. super.onRestoreInstanceState(state);
  12. }

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

  1. @Override
  2. public void onRestoreInstanceState(Parcelable state) {
  3. if (state instanceof Bundle) {
  4. Bundle bundle = (Bundle) state;
  5. this.minScale = bundle.getInt(MIN_SCALE_KEY);
  6. this.minScale = bundle.getInt(MAX_SCALE_KEY);
  7. state = bundle.getParcelable(SUPERSTATE_KEY);
  8. }
  9. super.onRestoreInstanceState(state);
  10. }

相关文章