I want to place an image at the middle camera view in the android.
I am using following code to open the camera
Intent mIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
mIntent.putExtra
(MediaStore.EXTRA_OUTPUT,MediaStore.Images.Media.EXTERNAL_CONTENT_URI.toString());
startActivityForResult(mIntent, PHOTO_SELECT);
and its working.But i dont know how to place an image.
Thanks in advanxe.