示例#1
0
 /**
  * Notification that something is about to happen, to give the Activity a chance to save state.
  *
  * @param outState a Bundle into which this Activity should save its state
  */
 @Override
 protected void onSaveInstanceState(Bundle outState) {
   // just have the View's thread save its state into our Bundle
   super.onSaveInstanceState(outState);
   mRsfAppThread.saveState(outState);
   Log.w(this.getClass().getName(), "SIS called");
 }