Java tutorial
//package com.java2s; //License from project: MIT License import android.content.Context; import android.content.Intent; import android.net.Uri; public class Main { public static void viewURL(Context context, String url) { Intent viewURLIntent = new Intent(Intent.ACTION_VIEW); viewURLIntent.setData(Uri.parse(url)); context.startActivity(viewURLIntent); } }