我使用firebaseUI将图像检索到ImageView中,但应用程序中下载的图像模糊不清。我尝试了不同的图像,但它仍然模糊不清。
以下是代码:
String val="images/"+id+".jpg";
StorageReference ref=mStorageRef.child(val);
Glide.with(this)
.using(new FirebaseImageLoader())
.load(ref)
.into(imageView);