未找到相机活动?

发布于 2024-12-12 04:24:12 字数 525 浏览 0 评论 0原文

我已经发布了一个应用程序,在日志中,我多次收到此消息

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.MAIN pkg=com.android.camera } 

我像这样调用相机

final Intent mainCameraIntent = new Intent();
mainCameraIntent.setPackage("com.android.camera");
mainCameraIntent.setAction("android.intent.action.MAIN");
startActivity(mainCameraIntent);

为什么会收到此消息?在我的设备(2.3.3)上,它工作正常。我之前在 2.1 设备上遇到过问题,并且 proguard 删除代码块也遇到过问题,但我不确定这是否与其中任何一个相关

I've released an app and in the logs, I'm getting this message several times

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.MAIN pkg=com.android.camera } 

I'm calling the camera like this

final Intent mainCameraIntent = new Intent();
mainCameraIntent.setPackage("com.android.camera");
mainCameraIntent.setAction("android.intent.action.MAIN");
startActivity(mainCameraIntent);

Why am getting this message? On my device (2.3.3), it works fine. I had issues with 2.1 devices before and also with proguard removing blocks of code, but I'm not sure if this is related to any of those

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魂归处 2024-12-19 04:24:12

为什么会收到此消息?

因为您不应该使用这个Intent。并非所有设备都会有 com.android.camera

Why am getting this message?

Because you should not be using this Intent. Not all devices will have com.android.camera.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文