步骤:
将图片上传到firebase存储空间
getdownloadUrl,转换为字符串并存储到firebase数据库
Uri downloadUrl = taskSnapshot.getMetadata().getDownloadUrl();
String UriinString=downloadUrl.toString();
在字符串中调用已保存的url并通过picasso加载到图像视图中,传递上下文和网址
Picasso.with(getApplicationContext()).load(currentURI).into(mindMapImage);