Android 调用第三方浏览器打开网址或下载文件

原文链接: https://my.oschina.net/u/1177694/blog/3076041

/**
     * 调用第三方浏览器打开
     * @param context
     * @param url 要浏览的资源地址
     */
    public static  void openBrowser(Context context,String url){
        final Intent intent = new Intent();
        intent.setAction(Intent.ACTION_VIEW);
        intent.setData(Uri.parse(url));
        // 注意此处的判断intent.resolveActivity()可以返回显示该Intent的Activity对应的组件名
        // 官方解释 : Name of the component implementing an activity that can display the intent
        if (intent.resolveActivity(context.getPackageManager()) != null) {
            final ComponentName componentName = intent.resolveActivity(context.getPackageManager());
            // 打印Log   ComponentName到底是什么
            L.d("componentName = " + componentName.getClassName());
            context.startActivity(Intent.createChooser(intent, "请选择浏览器"));
        } else {
            Toast.makeText(context.getApplicationContext(), "请下载浏览器", Toast.LENGTH_SHORT).show();
        }
    }
--------------------- 
作者:风正吹 
来源:CSDN 
原文:https://blog.csdn.net/yingtian648/article/details/79128663/ 
版权声明:本文为博主原创文章,转载请附上博文链接!

转载于:https://my.oschina.net/u/1177694/blog/3076041

你可能感兴趣的:(Android 调用第三方浏览器打开网址或下载文件)