Is there anyway tracking down application gets minimized? If there is something please let me know cause I have to update my own application when application gets minimized. It would be better doing somewhere irrespective of any activity.
Is there anyway tracking down application gets minimized? If there is something please let
Share
There is a callback in activity called
onUserLeaveHint(). It is called when activity gets left not by back press, but some interruption – home button or may be incoming call. Create a base class Activity which calls to an Application instanse for some action and derive from this abstract class.