[android-developers] Re: Updated app not showing up in Market's by date sorting?

2009-01-25 Thread James Patillo
Maybe those who figured it out don't want others knowing. It may be the case, however, that somehow a new app with the same name was added to the Market to make it appear at the top. -Original Message- From: Chister Nordvik [mailto:cnord...@gmail.com] Sent: Sunday, January 25, 2009 6:07

[android-developers] Re: Activity Issue on G1 phone

2009-01-23 Thread James Patillo
I think what happens is that the activity's state is saved, the activity is destroyed, and then it is recreated with its saved state. This is the same thing that happens when the home button is pressed and the app is reopened. This just what I have come to understand, and may be wrong.

[android-developers] Re: When does my thread die?

2009-01-23 Thread James Patillo
Your thread will likely be killed in a bad way in onDestroy(). You should therefore kill it yourself, for example in either onStop() or onDestroy(). Apps are killed, for the most part and from what I can tell when the back button is used to exit the app, or the Home button is used and the system

[android-developers] Re: Activity Issue on G1 phone

2009-01-23 Thread James Patillo
  sends to server in a thread. After that, he closes the keyboard, the activity will be destroyed. So the callback function in thread to update UI will crashed. It happens exactly in my application. On Jan 23, 7:20 am, James Patillo ja...@patillo.org wrote: I think what happens

[android-developers] Re: Activity Issue on G1 phone

2009-01-23 Thread James Patillo
am, James Patillo ja...@patillo.org wrote: Yeah, threads are particularly fun to deal with in Android. -Original Message- From: Stanley.lei [mailto:xiaofeng.lei...@gmail.com] Sent: Friday, January 23, 2009 11:52 AM To: Android Developers Subject: [android-developers] Re: Activity