Glide 获得 Bitmap

来自Silica Library | 間奏時光
跳到导航 跳到搜索

2020-05-19 17:55

代码

Glide.with(BaseTools.getContext())
        .asBitmap()
        .load(UserUtil.getBean().getData().getIcon())
        .into(new SimpleTarget<Bitmap>() {
            @Override
            public void onResourceReady(@NonNull Bitmap bitmap, @Nullable Transition<? super Bitmap> transition) {
                // Just use bitmap
            }
        });

注意

  SimpleTarget 已弃用,但也不是不能用。