android – Glide v4中的占位符/错误/后退

前端之家收集整理的这篇文章主要介绍了android – Glide v4中的占位符/错误/后退前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Glide-4.0.0 Missing placeholder,error,GlideApp and does not resolve its method placeholder,error8个
我正在使用最新版本的Glide,现在滑行:4.0.0-RC1并且无法找到占位符,错误,回退e.t.c等方法.可能他们已经为它提供了备用,但我没有得到它.有人知道这个版本中有替代品吗?

解决方法

试试这个
RequestOptions requestOptions = new RequestOptions();
requestOptions.placeholder(R.mipmap.ic_launcher);
requestOptions.error(R.drawable.error_img);

Glide.with(this)
                .setDefaultRequestOptions(requestOptions)
                .load("")
                .into(imageViewPlaceholder);
原文链接:https://www.f2er.com/android/310506.html

猜你在找的Android相关文章