如何在Android中调用浏览器打开网页

2024年11月29日 23:48
有3个网友回答
网友(1):

Uri uri = Uri.parse("http://www.google.com");
Intent intent = new Intent(Intent.ACTION_VIEW,uri);
startActivity(intent);

网友(2):

打开浏览器

网友(3):

程序接口