android.widget.HorizontalScrollView.onRestoreInstanceState()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(6.3k)|赞(0)|评价(0)|浏览(191)

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

HorizontalScrollView.onRestoreInstanceState介绍

暂无

代码示例

代码示例来源:origin: H07000223/FlycoTabLayout

@Override
protected void onRestoreInstanceState(Parcelable state) {
  if (state instanceof Bundle) {
    Bundle bundle = (Bundle) state;
    mCurrentTab = bundle.getInt("mCurrentTab");
    state = bundle.getParcelable("instanceState");
    if (mCurrentTab != 0 && mTabsContainer.getChildCount() > 0) {
      updateTabSelection(mCurrentTab);
      scrollToCurrentTab();
    }
  }
  super.onRestoreInstanceState(state);
}

代码示例来源:origin: joyoyao/superCleanMaster

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: JohnPersano/SuperToasts

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: ZieIony/Carbon

@Override
protected void onRestoreInstanceState(Parcelable state) {
  final SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  setSelectedPage(savedState.getSelectedPage());
  indicatorPos = savedState.getIndicatorPos();
  indicatorPos2 = savedState.getIndicatorPos2();
  post(new Runnable() {
    public void run() {
      setScrollX(savedState.getScroll());
    }
  });
}

代码示例来源:origin: guolindev/giffun

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: tianshaojie/AndroidFine

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: JackWHLiu/jackknife

@Override
public void onRestoreInstanceState(Parcelable parcelable) {
  if (parcelable instanceof Bundle) {
    Bundle bundle = (Bundle) parcelable;
    mSelectedPosition = bundle.getInt(STATE_POSITION);
    super.onRestoreInstanceState(bundle.getParcelable(STATE_INSTANCE));
  } else {
    super.onRestoreInstanceState(parcelable);
  }
}

代码示例来源:origin: JmStefanAndroid/EasyBehavior

@Override
protected void onRestoreInstanceState(Parcelable state) {
  if (state instanceof Bundle) {
    Bundle bundle = (Bundle) state;
    mCurrentTab = bundle.getInt("mCurrentTab");
    state = bundle.getParcelable("instanceState");
    if (mCurrentTab != 0 && mTabsContainer.getChildCount() > 0) {
      updateTabSelection(mCurrentTab);
      scrollToCurrentTab();
    }
  }
  super.onRestoreInstanceState(state);
}

代码示例来源:origin: JmStefanAndroid/PVCloudGroupn

@Override
protected void onRestoreInstanceState(Parcelable state) {
  if (state instanceof Bundle) {
    Bundle bundle = (Bundle) state;
    mCurrentTab = bundle.getInt("mCurrentTab");
    state = bundle.getParcelable("instanceState");
    if (mCurrentTab != 0 && mTabsContainer.getChildCount() > 0) {
      updateTabSelection(mCurrentTab);
      scrollToCurrentTab();
    }
  }
  super.onRestoreInstanceState(state);
}

代码示例来源:origin: lovejjfg/Circle

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: shanyao0/SimpleApp

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: Hankkin/TaoSchool

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: andstatus/andstatus

@Override
protected void onRestoreInstanceState(Parcelable state) {
  SavedState ss = (SavedState) state;
  super.onRestoreInstanceState(ss.getSuperState());
  mSavedState = ss;
  requestLayout();
}

代码示例来源:origin: woxblom/DragListView

@Override
protected void onRestoreInstanceState(Parcelable state) {
  SavedState ss = (SavedState) state;
  super.onRestoreInstanceState(ss.getSuperState());
  mSavedState = ss;
  requestLayout();
}

代码示例来源:origin: devinhu/androidone

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: zxfnicholas/CameraSDK

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: wutq/AndroidModuleDemo

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: CarGuo/linkagescroll

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  currentPosition = savedState.currentPosition;
  requestLayout();
}

代码示例来源:origin: moz1q1/WalleLibrary

@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState savedState = (SavedState) state;
  super.onRestoreInstanceState(savedState.getSuperState());
  mCurrentPosition = savedState.currentPosition;
  if (mCurrentPosition != 0 && mTabsContainer.getChildCount() > 0) {
    unSelect(mTabsContainer.getChildAt(0));
    select(mTabsContainer.getChildAt(mCurrentPosition));
  }
  requestLayout();
}

代码示例来源:origin: dbachelder/CreditCardEntry

@SuppressWarnings("unchecked")
@Override
public void onRestoreInstanceState(Parcelable state) {
  SavedState ss = (SavedState) state;
  super.onRestoreInstanceState(ss.getSuperState());
  for (int i = 0; i < getChildCount(); i++) {
    getChildAt(i).restoreHierarchyState(ss.childrenStates);
  }
}

相关文章

HorizontalScrollView类方法