I do not quite understand what you mean. But from what I see, you need to either WebView or use Intent to use the browser itself.
Check out the Intent documentation. There's also a blog post that gives you 4 ways to open a webpage in Android. I assume that the commonly used method will use Intent.ACTION_VIEW
Uri uri = Uri.parse( "http://stackoverflow.com" ); startActivity(new Intent(Intent.ACTION_VIEW, uri));
Here 's a blog post explaining this
source share