1

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.

venugopal
  • 15
  • 6

1 Answers1

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
  • 7,600
  • 7
  • 31
  • 52