I am trying to crop an image I have used the code below
Intent i = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); i.putExtra("crop", "true");
startActivityForResult(i, 1);
But i have to do crop image without using Intent. And also have to customize the croping UI. please help me out how to do that.
I am not supposed to use new Intent("com.android.camera.action.CROP");
with Thanks
Vikash