Start Native Camera without showing chooser

android

Solution

You can start the Camera app by using a intent, like in: Android camera intent

You can set a specific class in your intent like this: `Intent intent = new Intent("android.media.action.IMAGE_CAPTURE");` `intent.setClassName("com.android.camera", "com.android.camera.Camera");`

This will not show the intent-chooser and launch the default Camera-app.

Problem

Is it possible to start native android camera app that starts default camera instead of showing intent chooser and then start activity to get results?

Original source

Related problems