代码之家  ›  专栏  ›  技术社区  ›  Safeer

Glide v4中的占位符/错误/回退[重复]

  •  7
  • Safeer  · 技术社区  · 7 年前

    无法找到占位符、错误、回退e.t.c等方法。可能他们提供了替代方法,但我没有得到。有人知道这个版本中有哪些替代方案吗?

    2 回复  |  直到 7 年前
        1
  •  11
  •   Oussema Aroua    7 年前

    试试这个

    RequestOptions requestOptions = new RequestOptions();
    requestOptions.placeholder(R.mipmap.ic_launcher);
    requestOptions.error(R.drawable.error_img);
    
    Glide.with(this)
                    .setDefaultRequestOptions(requestOptions)
                    .load("")
                    .into(imageViewPlaceholder);
    
        2
  •  1
  •   Chintan Soni    7 年前

    签出迁移详细信息 here

    你有新课

    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