I want to make somethink like hyperlink. Right now, i created button, which opens new Activity with WebView. But i want to open a \"globally\" default web browser at specifi
Just make and Intent and set the link as uri to the intent. Then use the intent to start activity. Try this:
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://stackoverflow.com")));