You can open the URL in the embedded browser by running the action with the intent ACTION_VIEW . For instance:
String url = "http://www.whatever.com"; Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(url)); startActivity(intent);
source share