2016-07-23 10 views

答えて

0

あなたがターゲットをImageViewにする必要があります。

のjavadocから:http://square.github.io/picasso/2.x/picasso/com/squareup/picasso/RequestCreator.html#fit--

public RequestCreator fit() 

Attempt to resize the image to fit exactly into the target ImageView's bounds. 
This will result in delayed execution of the request until the ImageView has been 
laid out. 

Note: This method works only when your target is an ImageView. 
+0

私の目標は、ImageViewのでしょうか? onBitmapLoadedでイメージビューを設定しています。しかし、私はまだフィットを使用することはできません。どのように私はフィットを使用できますか? – Shahryar

+0

@Shahryar 'fit()'を使う唯一の方法は 'into(target)'ではなく 'into(imageView)'に読み込むことです。 –

関連する問題