Unable to Show Image In ImageView From Firebase Storage

前端 未结 2 758
我在风中等你
我在风中等你 2021-01-07 04:08

I have an app which allows the users to upload the images to a Firebase bucket,then I get the download URL of the image file and add it to a firebase database.The URL is in

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-07 04:47

    With Picasso you can load a simple image using:

    Picasso.with(Activity.this).load("your url image").into(imageView);
    

    Need add in Glade:

     compile 'com.squareup.picasso:picasso:2.5.2'
    

提交回复
热议问题