参见英文答案 >
Glide-4.0.0 Missing placeholder,error,GlideApp and does not resolve its method placeholder,error8个
我正在使用最新版本的Glide,现在滑行:4.0.0-RC1并且无法找到占位符,错误,回退e.t.c等方法.可能他们已经为它提供了备用,但我没有得到它.有人知道这个版本中有替代品吗?
我正在使用最新版本的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);