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?
Is it possible to start native android camera app that starts default camera instead
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.