如何在Android中实现Picasso图片加载库?

时间:2019-11-17 12:27:16

标签: android picasso glide

我是不熟悉android的人,我已经尝试过使用YouTube tutorial的Glide库,但是我想使用Picasso库。

我当前正在使用的代码:

Glide.with(this).load(currentUser.getPhotoUrl()).into(navUserPhoto);

2 个答案:

答案 0 :(得分:0)

  1. 将毕加索库导入您的项目:
implementation 'com.squareup.picasso:picasso:2.71828'
  1. 使用毕加索代替Glide:
Picasso.get().load(currentUser.getPhotoUrl()).into(navUserPhoto);

如果需要其他修改,请翻阅毕加索documentation

答案 1 :(得分:0)

//install this one in to the build.gradile(Module)
//in dependencies
//After sync the project
implementation 'com.squareup.picasso:picasso:2.71828'