0

Is it possible to customize android's camera crop intent view ? How to create a custom view like the image in this link?

Thanks

Community
  • 1
  • 1
Asha Soman
  • 199
  • 2
  • 3
  • 11

1 Answers1

2

Try This:

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra("crop", "true");
Anklet.
  • 479
  • 3
  • 14