web-dev-qa-db-ja.com

GlideはasBitmap()を解決できません

Glideを使用中にこのメソッドを解決できないのはなぜ.diskstaretegy()も解決できないのはなぜですか:

Glide.with(getActivity())
                .load(chalet.profilePhoto)
                .asBitmap() <--- cannot resolve this
                .diskCacheStrategy(DiskCacheStrategy.ALL) <--- cannot reslove this
                .fitCenter()
                .placeholder(R.drawable.logo).dontAnimate().into(mImageView);

私のグラドル:-

compile 'com.github.bumptech.glide:glide:4.0.0'
11
user7913931

修正する方法を見つけました。asBitmap()の直後にwith()を追加する必要があり、昔と同じように機能します。

PS:私のグライドバージョンは4.7.1です

33

asBitmapの場合、次のように記述する必要があります。

Glide.with(getActivity()).asBitmap().load(chalet.profilePhoto).into(mImageView);
18
Sami Kanafani
// Put asBitmap() right after Glide.with(context)   ,,. 4.0+
// And for SubsamplingScaleImageView use SimpleTarget

  Glide.with(context)
                .asBitmap()
                .load(images[position])
                .apply(RequestOptions.diskCacheStrategyOf(DiskCacheStrategy.AUTOMATIC))
                .into(new SimpleTarget<Bitmap>(width, height) {
                    @Override
                    public void onResourceReady(Bitmap bitmap, Transition<? super Bitmap> transition) {
                        subsampleImageView.setImage(ImageSource.bitmap(bitmap)); //For SubsampleImage
                    }
                });
9
Muhammad Jasim

asBitmap()の前にload()を呼び出す

Glide.with(context)
 .asBitmap()
 .load(uri)
5
Amer Dajah

別の方法で設定できます

RequestOptions requestOptions = new RequestOptions();
requestOptions.placeholder(R.drawable.ic_placeholder);
requestOptions.diskCacheStrategy(DiskCacheStrategy.ALL)
requestOptions.error(R.drawable.ic_error);

Glide.with(context)
     .setDefaultRequestOptions(requestOptions)
     .asBitmap()
     .load(url).into(holder.imageView);
3
Mohit Suthar

https://bumptech.github.io/glide/doc/migrating.html#requestoptions

        Glide.with(getActivity()).asBitmap()
                .load(headerURl)
                .listener(new RequestListener<Bitmap>() {
                              @Override
                              public boolean onLoadFailed(@Nullable GlideException e, Object o, Target<Bitmap> target, boolean b) {
//                                  Toast.makeText(cxt,getResources().getString(R.string.unexpected_error_occurred_try_again),Toast.LENGTH_SHORT).show();
                                  return false;
                              }

                              @Override
                              public boolean onResourceReady(Bitmap bitmap, Object o, Target<Bitmap> target, DataSource dataSource, boolean b) {
                                  if (null == header)
                                      return false;

                                 //set image
                                  header.setImageBitmap(bitmap);

                                  //process bitmap
                                  Palette.from(bitmap).generate(
                                          new Palette.PaletteAsyncListener() {
                                              @SuppressWarnings("ResourceType")
                                              @Override
                                              public void onGenerated(Palette palette) {

                                                  int vibrantColor = palette
                                                          .getVibrantColor(R.color.primary_500);
                                                  int vibrantDarkColor = palette
                                                          .getDarkVibrantColor(R.color.primary_700);
                                                  collapsingToolbarLayout
                                                          .setContentScrimColor(vibrantColor);
                                                  collapsingToolbarLayout
                                                          .setStatusBarScrimColor(vibrantDarkColor);
                                              }
                                          });
                                  return false;
                              }
                          }
                ).submit();
2
Hitesh Sahu