本人使用3.7.0版本 加载到RelativeLayout做背景图
Glide.with(mContext)
.load(url)
.asBitmap()
.fitCenter()
.diskCacheStrategy(DiskCacheStrategy.RESULT)
.into(new SimpleTarget<Bitmap>() { // 括号里可以指定图片宽高
@Override
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
Drawable drawable = new BitmapDrawable(resource);
launchBg1.setBackground(drawable);// 设置背景
}
});