When clicking on a button I need to open the front camera by default but back camera is displaying. Please give me some idea how to open front camera.
Asked
Active
Viewed 107 times
1 Answers
2
Add this to the intent
intent.putExtra("android.intent.extras.CAMERA_FACING", 1);
add these permissions in the AndroidManifest.xml
file
<uses-permission android:name="android.permission.CAMERA" />

Gowthaman M
- 8,057
- 8
- 35
- 54