admin 管理员组

文章数量: 887042

很简单!如下代码!即可!

Intent intent = new Intent(Intent.ACTION_VIEW); //Intent.ACTION_VIEW固定写法
intent.setData(Uri.parse(url)); //url是你要跳转的网页地址
startActivity(intent);

本文标签: 打开网页 浏览器 方法 Android