i am new to android programming
My concern is:
Whenever a particular application is closed, i want a message box to be displayed which asks the user to save certain files related to the application(for example kml file in google earth). Do i need to develope an app for it or can it be done changing my phone/system settings.
i am new to android programming My concern is: Whenever a particular application is
Share
Any data of applications should be saved in the background when “closing”/pausing an app instead of NOT closing the app and showing dialog boxes (that’s really unintuitive).
Also have a look at the Activity Lifecycle to see why Android apps don’t “close” but are rather paused and their lifecycle managed by the Android system.