android studio打开浏览器
时间: 2023-04-21 08:06:50 浏览: 245
android实战 打开浏览器(android studio源程序工程)
您可以使用以下代码在Android Studio中打开浏览器:
```
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(intent);
```
其中,您可以将“http://www.google.com”替换为您想要打开的网址。
阅读全文