Guest User

Untitled

a guest
Oct 20th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. @Override
  2. public void onSaveInstanceState(Bundle savedInstanceState) {
  3. // Save our state (and our JSON)
  4. savedInstanceState.putBoolean("loaded", this.loaded);
  5. if (this.json != null)
  6. savedInstanceState.putString("json", this.json.toString());
  7. }
Add Comment
Please, Sign In to add comment