void openUrl(String url) { Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(i); }