I've added the following to my application build.gradle:
compile 'com.squareup.picasso:picasso:2.5.2'
当我尝试使用以下代码时,毕加索是红色的。它说无法解析符号。
Picasso.with(mContext)
.load(profilePictureURL)
.resize(50, 50) // Your preferred size
.centerCrop()
.into(finalHolder.profilePicture);
我还能做什么?