您好,我已经为我的应用程序使用了Service Storage服务,并且为我的应用程序中的每个页面使用了imageview,并且正在使用Picasso从firebase数据库中检索图像数据,还添加了{{1}
还有keepsync(true);
,但是即使我在毕加索中添加了回调网络策略,但从Firebase存储中加载数据图像还是有点慢,如何使数据加载更快
setpersistenceenabled(true)
但是我想更快地加载图像
答案 0 :(得分:0)
您可以使用 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);