gpt4 book ai didi

android - 如何管理 "No application can perform this action"(AKA ActivityNotFoundException)

转载 作者:搜寻专家 更新时间:2023-11-01 08:57:19 24 4
gpt4 key购买 nike

这是我的代码

    public void onClick() {
try {
startActivity(Utils.openFile(f.getPath(),myExt));
}
catch(ActivityNotFoundException activityNotFoundException) {
Toast.makeText(mContext, "Nessuna App trovata", Toast.LENGTH_LONG).show();
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("market://search?q="+myExt+"&c=apps"));
startActivity(intent);
}

我的 Utils.openfile() 在哪里

public static Intent openFile(String u,String b) {
File file = new File(u);
Intent target = new Intent(Intent.ACTION_VIEW);
target.setDataAndType(Uri.fromFile(file),"application/" + b);
target.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
Intent intent = Intent.createChooser(target, "Apri File");
return intent;
}

现在如您所见,如果找不到任何可以打开我的文件的应用程序(pdf、mobi 或 epub),我想管理它,我想开始一个链接到 android 市场并搜索任何应用程序的 Intent ..

但是,我不知道为什么,我的代码从来没有遇到异常,只是显示一个对话框,上面写着“没有应用程序可以执行此操作”。我该如何管理和实现我的目标?

最佳答案

尝试摆脱 createChooser()。毕竟,无论如何 ACTION_VIEW 都不需要它——如果用户为此 MIME 类型选择了默认值,请允许他们使用它。而且,选择器会阻止您获取 ActivityNotFoundException,因为选择器 是 Activity ,它始终存在。

关于android - 如何管理 "No application can perform this action"(AKA ActivityNotFoundException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18126183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com