By "web browser like", I am not talking about using WebView to display web pages within the app. I am actually interested in how to do the following:
Please help.
- When the user clicks on a link in any Android app (Twitter, Facebook etc...), a popup window shows up asking the user to select the default web browser. The list will contain the standard Android web browser and any alternative browsers you have installed (Opera Mini, Dolphin HD etc..) How can we add our app to this list?
- Now the user selects our app from the list. It is assumed that the link the user clicked, is now passed on to this app. How to receive this link within the activity so that we can display it within the app using a WebView?
Please help.