首页 > 代码库 > Android -- 打开某个指定的网站

Android -- 打开某个指定的网站

1. 要使用的代码

  

Intent intent = new Intent();intent.setData(Uri.parse(sUrl));intent.setAction(Intent.ACTION_VIEW);actMain.this.startActivity(intent); 

2.说明

   sUrl 就是你要打开的网址

Android -- 打开某个指定的网站