Unable To Show Images From Firebase Storage
I am using new Firebase Storage and uploading image and then getting the download url. After converting the download url to string, i am using it to display in my activity but it j
Solution 1:
In order to show images you should use ImageView.
You can use Picasso Library to show images in ImageView. You just need to pass the url, uri or resource to Picasso with image view.
like
Picasso.with(this).load(/* url of image */).into(/*your imageview id*/);
To use the picasso you need to add the following in Gradle
compile'com.squareup.picasso:picasso:2.5.2'
See this answer.
Post a Comment for "Unable To Show Images From Firebase Storage"