无法将毕加索加载到项目中

时间:2016-09-21 12:07:10

标签: java android picasso

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);

我还能做什么?

0 个答案:

没有答案