我正在使用此代码:
Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");
File photo = new File("/sdcard/picture.png");
intent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photo));
Uri imageUri = Uri.fromFile(photo);
startActivity(intent);
我想将此意图与预定义的设置一起使用,例如每当我开启相机时默认为正面。这可能吗?
答案 0 :(得分:2)
这是前置Camera意图,在你的代码中使用它! 这是一个很好的教程:http://www.vogella.com/articles/AndroidCamera/article.html
int CAMERA_FACING_FRONT
在此处阅读更多内容:http://developer.android.com/reference/android/hardware/Camera.html