How to show captured Image onto new Activity?

前端 未结 2 2075
日久生厌
日久生厌 2021-01-26 08:27

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

2条回答
  •  星月不相逢
    2021-01-26 08:38

    use startActivityForResult() for firing Image upload screen and use onActivityResult() to get the image data back and to display it in ImageView

    Refer this

提交回复
热议问题