安卓应用中使用第三方软件打开PDF文件

来源:互联网 发布:阿里云的网站空间 编辑:程序博客网 时间:2024/05/17 08:37
private void onpenPDF() {    Intent intent = new Intent(Intent.ACTION_VIEW);    intent.setDataAndType(pdfuri, "application/pdf");    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);    try {        startActivity(intent);    }    catch (ActivityNotFoundException e) {        ToastUtil.showSystemToast(this,"请先安装相关PDF程序");    }}
0 0
原创粉丝点击