码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2014-09-19 08:47:15      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   使用   ar   div   art   

1. 要使用的代码

  

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

2.说明

   sUrl 就是你要打开的网址

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

标签:android   style   blog   color   io   使用   ar   div   art   

原文地址:http://www.cnblogs.com/SM-t/p/3980615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!