Android Question save picture in an imageview when capture button is clicked

john1014

Member
hi, can anyone help me? I'm making an app that has a camera. My problem is , how to save the captured picture in an imageview and not on a file directory when i click the capture button. pLease help.
 

john1014

Member
if i will capture in camera. I want to show it on the other module with an imageview. how do i code it? to show the image in the other module instead of saving it in the file
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
if i will capture in camera. I want to show it on the other module with an imageview. how do i code it? to show the image in the other module instead of saving it in the file

Instead of saving the bitmap just set it to the
Imageview bitmap like:

B4X:
imageview.bitmap = bitmap
 
Upvote 0
Top