我已经检查了有关No Activity found to handle Intent
错误的类似问题。 他们都没有涵盖我的问题。
当应用程序将在 Chrome 浏览器中使用 AppCompatActivity 中的 Intent 打开网址时,我在哨兵日志中收到此错误:
android.content.ActivityNotFoundException: No Activity found to handle Intent
{ act=android.intent.action.VIEW dat=https://www.example.com/...
flg=0x10000000 pkg=com.android.chrome }
这是我的代码:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setPackage("com.android.chrome");
if (MyMethods.isAppInstalled(getApplicationContext(), "com.android.chrome")) {
try {
startActivity(intent);
} catch (ActivityNotFoundException ex) {
SentryLog.warn(ex);
// Chrome browser presumably not installed so allow user to choose instead
intent.setPackage(null);
startActivity(intent);
}
} else {
// Chrome browser presumably not installed so allow user to choose instead
intent.setPackage(null);
startActivity(intent);
}
SentryLog.warn(ex);
报告了错误。
这是 MyMethods 类中的isAppInstalled()
方法:
public static boolean isAppInstalled(Context context, String packageName) {
try {
if (context != null) {
context.getPackageManager().getPackageInfo(packageName, PackageManager.GET_ACTIVITIES);
}
return true;
} catch (PackageManager.NameNotFoundException e) {
MyLog.w(TAG, new Throwable().getStackTrace()[0].getLineNumber(), e);
e.printStackTrace();
}
return false;
}
有时它会到达范围。如您所见,我检查了 chrome 是否安装在设备上,因此如果它不转到其他位置,它就会安装!在这种情况下,为什么它无法执行startActivity(intent);
并且它进入了范围?
我的代码在活动中,所以我应该使用intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
吗?
无需检查 chrome,它会找到浏览器本身。注意 url 必须以 http 或 https 开头。
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
fragmentActivity.startActivity(browserIntent);
try {
Intent i = new Intent();
i.setPackage("com.android.chrome");
i.setAction(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
} catch (Exception e) {
e.printStackTrace();
// chrome is not installed in the device
}
您可以像这样避免崩溃,也可以安装或不安装该应用程序。
要检查是否安装了 chrome,您可以使用以下方法
private boolean isChromeInstalled() {
PackageInfo pInfo;
try {
pInfo = getPackageManager().getPackageInfo("com.android.chrome", 0);
} catch (PackageManager.NameNotFoundException e) {
//chrome is not installed on the device
return false;
}
return true;
}