[android-developers] Re: call onCreate each time app starts

2010-04-05 Thread patbenatar
onCreate will be called whenever your activity is being run and the system has no currently running instance of your app (say they run your app yesterday and between then and now they run Browser, Gmail, and a couple games--chances are the memory allocated to your app has been freed so the games co

[android-developers] Re: call onCreate each time app starts

2010-04-05 Thread hiwa
> How to call Activity's onCreate() method each time it starts? > > Only first time when installed on device it calls onCreate method. If I have understood you correctly, then you need to read a bit more about Activity in general (http://developer.android.com/reference/ android/app/Activity.html).