Intent it =
new
Intent (Intent.ACTION_VIEW, Uri.parse (
"http://yuncode.net"
) );
it.setClassName (
"com.Android.browser"
,
"com.android.browser.BrowserActivity"
);
getContext().startActivity (it);