未找到相机活动?
我已经发布了一个应用程序,在日志中,我多次收到此消息
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为您不应该使用这个
Intent
。并非所有设备都会有com.android.camera
。Because you should not be using this
Intent
. Not all devices will havecom.android.camera
.