在果冻豆上启动相机

时间:2012-10-16 14:01:41

标签: android android-intent android-activity camera gallery

我正在开发一款必须启动相机的应用。在Jelly Bean中,画廊和相机合并,现在是相同的应用程序(我认为com.android.gallery3d)。我一直在寻找关于如何启动相机的答案,但它们都与startActivityForResult()方法有关。我不希望用户返回我的应用程序,我不希望我的应用程序获取照片。

如何做到这一点?

1 个答案:

答案 0 :(得分:1)

这个Intent在JellyBean上对我很好:

Intent intent = new Intent(android.provider.MediaStore.INTENT_ACTION_STILL_IMAGE_CAMERA);
startActivity(intent);