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

时间:2017-07-19 10:20:34

标签: android placeholder android-glide

我现在使用的是最新版本的Glide,它是滑翔:4.0.0-RC1 ,并且无法找到占位符,错误,后备e.t.c等方法。可能他们已经为它提供了备用,但我没有得到它。有人知道这个版本中有替代品吗?

2 个答案:

答案 0 :(得分:10)

试试这个

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

Glide.with(this)
                .setDefaultRequestOptions(requestOptions)
                .load("")
                .into(imageViewPlaceholder);

答案 1 :(得分:1)

here查看迁移详情。看起来他们有很多改进。

您有新课 RequestOptions

RequestOptions options = new RequestOptions()
    .centerCrop()
    .placeholder(R.drawable.placeholder)
    .error(R.drawable.error)
    .priority(Priority.HIGH);

然后,

Glide.with(fragment/activity)
    .load(url)
    .apply(options)
    .into(imageView);

要详细了解迁移详细信息,您可以转到here