在三星 Galaxy S6 上,拍照时有一个使用专业相机模式的选项,可以在拍照时访问各种额外的设置。
在我启动相机活动时的应用程序中
Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(camera_intent, CAM_REQUEST);
我没有可用的 Pro 相机模式。有没有办法在我的应用程序中设置专业模式?
在三星 Galaxy S6 上,拍照时有一个使用专业相机模式的选项,可以在拍照时访问各种额外的设置。
在我启动相机活动时的应用程序中
Intent camera_intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(camera_intent, CAM_REQUEST);
我没有可用的 Pro 相机模式。有没有办法在我的应用程序中设置专业模式?