-4

I am working on an Android/Firebase chat app that send images. After a gallery intent, I get the Uri in onActivityResult and assign it to a public Uri in the activity. My question is that how can I customize the RecyclerView adapter to show the image directly for the sender only without the need to wait the image to be uploaded to Firebase then retrieving it?

Kurdo
  • 13
  • 2
  • i think besides firebase you may use websockets to send data database and retrieve at receiving end..this is what i understood by your model – Faisal Naseer Mar 14 '18 at 09:11
  • I thought it could be simply taking the Uri and set it with Picasso to the ImageView in the adapter but it does not show – Kurdo Mar 14 '18 at 09:13
  • try this way https://stackoverflow.com/questions/23681177/picasso-load-image-from-filesystem – Faisal Naseer Mar 14 '18 at 09:18

1 Answers1

0

Try in the sender bind in your adapter to set the image with Picasso and with if statement: if(theUri != null)

Hemant Parmar
  • 3,924
  • 7
  • 25
  • 49