更快地加载firebase图像数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更快地加载firebase图像数据相关的知识,希望对你有一定的参考价值。
你好我已经为我的应用程序使用了服务存储,并且我的应用程序中的每个页面都使用了imageview,我使用Picasso从firebase数据库检索图像数据,我还添加了keepsync(true);
和setpersistenceenabled(true)
但是再次加载来自firebase存储的数据图像是有点慢,即使我在Picasso中添加了回调网络策略但没有多大帮助,如何更快地加载数据
Picasso.with(context).load(uri).placeholder(R.drawable.profile_display).fit().centerCrop().into(yourImageView);
但我想更快地加载图像
答案
您可以使用Picasso或Glide库从firebase更快地加载图像。
//Example to load image in imageView using Picasso...
Picasso.with(context).load(uri).placeholder(R.drawable.profile_display).fit().centerCrop().into(yourImageView);
以上是关于更快地加载firebase图像数据的主要内容,如果未能解决你的问题,请参考以下文章