I am developing an application in that I want to open url(www.google.com) with android default browser(com.android.browser). After some time I want to close or hide the browser and show my application to the user. I tried the following
- Broadcast Receiver
- Timer
- Handler
None of them is working. FYI -- I am starting the browser from fragment. I want to show the same fragment after closing or hiding the browser. The broadcast receiver is working but it is opening the initial fragment but I want the same fragment when I start the browser.
Please any one help me