Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NaturalizerINA/833af50c7a8706264272f2a1142fa935 to your computer and use it in GitHub Desktop.
Save NaturalizerINA/833af50c7a8706264272f2a1142fa935 to your computer and use it in GitHub Desktop.
this is example of save instance state in activity 2
@Override
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putString("reply_text", mReplyTextView.getText().toString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment