我尝试使用pdf阅读器打开pdf。 但我没有找到申请。
如何在显示消息之前找到任何可用的应用程序。
我想打开应用程序弹出窗口,如果有任何应用程序存在打开pdf文件我该如何添加它?
Intent target = new Intent();
target.setType("application/pdf");
target.setData(Uri.parse(attachment));
target.setAction(Intent.ACTION_GET_CONTENT);
Intent intent = Intent.createChooser(target, "Open File");
答案 0 :(得分:0)
试试这个;
{{1}}