概述
Uri uri = Uri.parse(Url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
PackageManager pm = getPackageManager();
List<ResolveInfo> queryactivities = pm.queryIntentActivities(intent,
PackageManager.GET_INTENT_FILTERS);
boolean hasChrome = false;
for (int i =0;i < queryactivities.size();i++){
if (queryactivities.get(i).activityInfo.packageName.equals("com.android.chrome")){
hasChrome = true;
intent.setClassName(queryactivities.get(i).activityInfo.packageName,
queryactivities.get(i).activityInfo.name);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
}
if (!hasChrome){
HtmlActivity.StartMe(activity,Url);
}
或者
Uri uri = Uri.parse(payUrl);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_GRANT_READ_URI_PERMISSION);
try {
intent.setClassName("com.android.chrome",
"com.google.android.apps.chrome.IntentDispatcher");
startActivity(intent);
} catch (Exception e) {
H5Activity.go(this);
}
最后
以上就是能干舞蹈为你收集整理的从app内跳转chrome浏览器,如果没有就用webView的全部内容,希望文章能够帮你解决从app内跳转chrome浏览器,如果没有就用webView所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复