[android-developers] Re: Activity onPause and onResume Question

2011-08-15 Thread TheWanz
Found what I was looking for here: http://www.androidguys.com/2008/11/07/rotational-forces-part-two/ On Aug 14, 12:12 am, Indicator Veritatis wrote: > The advice to read and memorize the online docs on lifecycle is good. > But memorization will be somewhat elusive. While you are waiting for > tha

[android-developers] Re: Activity onPause and onResume Question

2011-08-15 Thread TheWanz
Found what I was looking for here: http://www.androidguys.com/2008/11/07/rotational-forces-part-two/ On Aug 14, 12:12 am, Indicator Veritatis wrote: > The advice to read and memorize the online docs on lifecycle is good. > But memorization will be somewhat elusive. While you are waiting for > tha

[android-developers] Re: Activity onPause and onResume Question

2011-08-13 Thread Indicator Veritatis
The advice to read and memorize the online docs on lifecycle is good. But memorization will be somewhat elusive. While you are waiting for that elusive satori to bloom, remember one point: there is never a good reason to do TCP/IP in the main thread, which in Android, is also the UI thread. (or wha

[android-developers] Re: Activity onPause and onResume Question

2011-08-13 Thread Jim
It might help to read (and memorize) the activity life-cycle (here: http://developer.android.com/reference/android/app/Activity.html) A phone rotation destroys the current activity unless you override onConfigurationChanged. Don't just "override" it though - make sure you know what to include, wha