When I click a Button it opens the camera and when I save it, it saves into the gallery. I want to display that picture in a new activity as an ImageView
Button
ImageView
use startActivityForResult() for firing Image upload screen and use onActivityResult() to get the image data back and to display it in ImageView
startActivityForResult()
Image
onActivityResult()
image
Refer this