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

/**
     * 调用第三方浏览器打开
     *
@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/ 
版权声明:本文为博主原创文章,转载请附上博文连接!浏览器

相关文章
相关标签/搜索