Android调用浏览器打开指定页面

一、启动A ndroid 默认浏览器

在Android程序中我们可以通过发送隐式Intent来启动系统默认的浏览器。如果手机本身安装了多个浏览器而又没有设置默认浏览器的话,系统将让用户选择使用哪个浏览器来打开连接。

java 复制代码
Uri uri = Uri.parse("https://www.baidu.com"); 
Intent intent = new Intent(Intent.ACTION_VIEW, uri); 
startActivity(intent); 

二、启动指定浏览器打开

在Android程序中我们可以通过发送显式Intent来启动指定的浏览器。例如我手机安装了多个浏览器:QQ浏览器、chrome浏览器、uc浏览器。我可以指定用某个浏览器打开这个链接。例如打开QQ浏览器如下代码:

java 复制代码
Uri uri = Uri.parse("https://www.baidu.com"); 
Intent intent = new Intent(Intent.ACTION_VIEW,uri); 
//intent.setClassName("com.UCMobile","com.uc.browser.InnerUCMobile");//打开UC浏览器 
intent.setClassName("com.tencent.mtt","com.tencent.mtt.MainActivity");//打开QQ浏览器 
startActivity(intent); 

用uc浏览器打开只需要把打开qq浏览器那行代码注释掉,然后打开uc浏览器那行代码取消注视就行。

也可以指定系统自带的浏览器:

java 复制代码
Intent intent = new Intent(); 
intent.setAction("android.intent.action.VIEW"); 
Uri content_url = Uri.parse("http://www.baidu.com");  
intent.setData(content_url); 
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
intent.setClassName("com.android.browser","com.android.browser.BrowserActivity"); 
mContext.startActivity(intent); 

三、优先使用

推荐用第一种,默认浏览器打开,或者让用户自己去选择用哪个浏览器打开。除非有特殊需求才会用到第二种。

第二种出错率比较高,假如你想用uc浏览器打开,但是新版本的uc浏览器不用原来的包名了,这个时候你就没法打开了。还有uc浏览器兼容有问题,我跳转过去只会显示UC首页,而不是直接提打开我提供的http链接。但是QQ浏览器就没有这个问题。

简单讲讲,其实使用浏览器打开网页就是使用intent跳转到浏览器,设置intent的Action为Intent.ACTION_VIEW,然后设置intent的Data为网址的URI,就可以使用系统的浏览器打开网页。如果需要跳转到具体的浏览器,只需设置setClassName为具体浏览器的包名和activity名称,具体的在代码里写的很详细。

这里还可以使用WebView打开网页,也很简单。

1、自定义一个简单的WebView浏览器,设置下面属性:

java 复制代码
mWebView = (ProgressWebView) findViewById(R.id.baseweb_webview); 
mWebView.getSettings().setJavaScriptEnabled(true); 
mWebView.setWebViewClient(new WebViewClient()); 

2、指定需要打开的额网页,在自定义的WebViewActivity中打开,如:

java 复制代码
WebView myWebView = (WebView) findViewById(R.id.webview); 
myWebView.loadUrl(<a href="http://www.hao123.com" target="_blank" http://www.hao123.com</a ); 

以上所述是小编给大家介绍的android 使用浏览器打开指定页面的实现方法,希望对大家有所帮助。

相关推荐
深海呐5 小时前
Android 最新的AndroidStudio引入依赖失败如何解决?如:Failed to resolve:xxxx
android·failed to res·failed to·failed to resol·failed to reso
解压专家6665 小时前
安卓解压软件推荐:高效处理压缩文件的实用工具
android·智能手机·winrar·7-zip
Rverdoser5 小时前
Android 老项目适配 Compose 混合开发
android
️ 邪神7 小时前
【Android、IOS、Flutter、鸿蒙、ReactNative 】标题栏
android·flutter·ios·鸿蒙·reatnative
努力遇见美好的生活7 小时前
Mysql每日一题(行程与用户,困难※)
android·数据库·mysql
图王大胜9 小时前
Android Framework AMS(17)APP 异常Crash处理流程解读
android·app·异常处理·ams·crash·binderdied·讣告
ch_s_t9 小时前
电子商务网站之首页设计
android
豆 腐12 小时前
MySQL【四】
android·数据库·笔记·mysql
想取一个与众不同的名字好难14 小时前
android studio导入OpenCv并改造成.kts版本
android·ide·android studio
Jewel10515 小时前
Flutter代码混淆
android·flutter·ios