Skip to content

Instantly share code, notes, and snippets.

@iamsibasish
Created January 9, 2018 10:57
Show Gist options
  • Save iamsibasish/8550d3f6746ac72238ecd6f2d5697b75 to your computer and use it in GitHub Desktop.
Save iamsibasish/8550d3f6746ac72238ecd6f2d5697b75 to your computer and use it in GitHub Desktop.
@Override
public void onSaveInstanceState(Bundle state){
super.onSaveInstanceState(state);
state.putParcelableArrayList("questionsArray", questions);
state.putParcelableArrayList("userAnswersArray", userAnswers);
state.putInt("position", position);
state.putInt("mSeconds", mSeconds);
state.putInt("mTestId", mTestId);
state.putParcelable("mTest", mTest);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment