How can I detect the start of my application from a completely terminated stated (as if the user went to Manage Applications and forced stopped the app)? I don’t mean like a first-time start up when the user first installed the app nor do I mean just in an Activity by using onStart() or onCreate().
How can I detect the start of my application from a completely terminated stated
Share
I’m not sure exactly what you’re asking, but
Application.onCreate()will be called when the application is starting, before any other application objects have been created. So you could use that to detect when an app is started from a non-running state.