无法通过Picasso从Firebase Storage下载图像

时间:2016-07-28 14:40:28

标签: android firebase-realtime-database picasso firebase-storage

步骤:

  1. 将图片上传到firebase存储空间

  2. getdownloadUrl,转换为字符串并存储到firebase数据库

    Uri downloadUrl = taskSnapshot.getMetadata().getDownloadUrl();
    String UriinString=downloadUrl.toString();
    
  3. 在字符串中调用已保存的url并通过picasso加载到图像视图中,传递上下文和网址

    Picasso.with(getApplicationContext()).load(currentURI).into(mindMapImage);
    

0 个答案:

没有答案