Related questions
What is Activity.finish() method doing exactly?
I'm developing android applications for a while, and followed a lot of posts about activity life cycle, and application's life cycle.
I know Activity.finish() method calls somewhere in the way to Activity.onDestroy(), and also removing the activity from …
Using the Android Application class to persist data
I'm working on a fairly complex Android application that requires a somewhat large amount of data about the application (I'd say a total of about 500KB -- is this large for a mobile device?). From what I can tell, any …
When does Application's onCreate() method get called?
In my Android application, I have a DefaultApplication class which extends android.app.Application, and in its onCreate() I bind some services which will be used by my other Activities in this app.
Also I have a BroadcastReceiver which listens …