Reputation: 1
My app has a feature where you can take pictures. On a Nokia X10 with Android 12 when the camera is opened from within the app, camera options (e.g. zoom) aren't shown. On any other devices I have tested with Android 12, the camera options are shown.
The camera is being opened like this:
Activity a = getActivity(); Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); a.startActivityForResult(intent, 10);
I installed a random camera app from the Play Store on the same Nokia X10. Here the camera options are shown. Is there a another way for how to open the camera, e.g. with specific settings or flags?
Upvotes: 0
Views: 67