[android-developers] savedInstanceState null?

2011-01-20 Thread Chris
Hi All, I'm trying to save the state of my app while I shut it down but every time I bring it back up savedInstanceState is always null..? I couldn't seem to find much info on calling onSaveInstanceState properly so here's what I did onPause () {... Bundle test = new Bundle();

Re: [android-developers] savedInstanceState null?

2011-01-20 Thread TreKing
On Thu, Jan 20, 2011 at 1:48 PM, Chris cbu...@gmail.com wrote: I'm trying to save the state of my app while I shut it down but every time I bring it back up savedInstanceState is always null..? If your app is shut down completely, there is no state to save. I couldn't seem to find much