In the class PersistentState.java the prefs variable gets the saved/typed text from prior sessions here, on line 106 into restoredText. Where does the getString method get the saved/typed text?
protected void onResume() {
super.onResume();
...
SharedPreferences pr开发者_如何学Goefs = getPreferences(0);
String restoredText = prefs.getString("text", null);
it will be a prefs file in the data directory
something like
/data/com.birthdroid/default.prefs
精彩评论