Saving textview in a fragment when rotating screen
问题 I have problem with saving and then restoring text from TextView in sherlockframent attached as a tab into a actionbar when i rotate a screen. I override onPause() and onActivityCreated(Bundle savedInstanceState) metod as in belowed code: @Override public void onPause() { super.onPause(); Bundle outState = new Bundle(); String str = memoryText.getText().toString(); outState.putCharSequence("app.multicalc.basiccalcfragment.save", str); Log.v("saving", "text saved"); } @Override public void