Fit不能与Target Picasso Android一起使用

时间:2016-07-23 14:13:45

标签: android picasso

我想将fit()与目标一起使用。但它不会让我。 我还能做什么?我想做这样的事情:

Picasso.with(this).load(selectedImage).fit().into(target);

1 个答案:

答案 0 :(得分:0)

如果您使用fit(),则目标必须是ImageView。

来自javadoc:http://square.github.io/picasso/2.x/picasso/com/squareup/picasso/RequestCreator.html#fit--

yum