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

Android 打开URL

时间:2016-05-16 14:24:51      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

打开链接

     Intent it = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));  
     it.setClassName("com.android.browser", "com.android.browser.BrowserActivity");  
     getContext().startActivity(it);  

打开本地网页

Intent intent=new Intent();   
intent.setAction("android.intent.action.VIEW");   
Uri CONTENT_URI_BROWSERS = Uri.parse("content://com.android.htmlfileprovider/sdcard/123.html");   
intent.setData(CONTENT_URI_BROWSERS);   
intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");   
startActivity(intent);  

 

Android 打开URL

标签:

原文地址:http://www.cnblogs.com/zhujiabin/p/5497832.html

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