ITEEDU

在程序中调用浏览器

Uri uri = Uri.parse("http://commonsware.com");

Intent intent = new Intent(Intent.ACTION_VIEW,uri);

startActivity(intent);