本文整理了Java中android.view.TextureView.onRestoreInstanceState()
方法的一些代码示例,展示了TextureView.onRestoreInstanceState()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TextureView.onRestoreInstanceState()
方法的具体详情如下:
包路径:android.view.TextureView
类名称: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);
}
内容来源于网络,如有侵权,请联系作者删除!