[android-developers] Where is the UI state information (used in super.onCreate(Bundle savedInstanceState)) stored ?

2010-11-07 Thread Mathias Lin
Where is the UI state information (used in super.onCreate(Bundle savedInstanceState)) stored and how can it be deleted from another app or command line on a rooted phone? I need to delete the user data (username, password) of both the native Facebook app (com.facebook.katana) and the stock

Re: [android-developers] Where is the UI state information (used in super.onCreate(Bundle savedInstanceState)) stored ?

2010-11-07 Thread Dianne Hackborn
It isn't stored anywhere persistent. It is only kept in RAM, and only for as long as that particular activity instance may need to be launched again. (That is, if you call finish(), that activity instance is gone, and any saved state no longer needs to be kept.) On Sun, Nov 7, 2010 at 8:52 PM,