admin管理员组

文章数量:1566631

/**
     * 调用第三方浏览器打开
     * @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(); 
} 
}

 

本文标签: 第三方浏览器网址文件android