2
ターゲットにfit()を使いたいです。しかし、それは私を許さないでしょう。 他に何ができますか?私はこのようなことをしたい:ターゲットピカソではフィットできません。Android
Picasso.with(this).load(selectedImage).fit().into(target);
ターゲットにfit()を使いたいです。しかし、それは私を許さないでしょう。 他に何ができますか?私はこのようなことをしたい:ターゲットピカソではフィットできません。Android
Picasso.with(this).load(selectedImage).fit().into(target);
あなたがターゲットを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.
私の目標は、ImageViewのでしょうか? onBitmapLoadedでイメージビューを設定しています。しかし、私はまだフィットを使用することはできません。どのように私はフィットを使用できますか? – Shahryar
@Shahryar 'fit()'を使う唯一の方法は 'into(target)'ではなく 'into(imageView)'に読み込むことです。 –