How can I know that is application coming from background? I have a scenario like in when the application is coming from background I need to check one property and then based on that I need to launch a layout with a webview. If I use onPause() and onResume() for this, it's being called whenever it's moved from one activity to other activity. But I want this to be called when the app comes from background. How can I achieve this?
Thanks in Advance...