Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra("android.intent.extras.CAMERA_FACING", 1);
startActivityForResult(intent, CAMERA_REQUEST);
My code is above, my device is LG Nexus 4 with 4.4.2.
Intention begins with the rear camera. I am trying to change the number from 0,1,2, but the same result. How can i do this?
thank
source
share