滑动4.3.1覆盖和占位符功能不起作用

时间:2017-11-13 10:20:44

标签: android android-glide

我将我的滑行更新为4.3.1但是我全部使用滑动功能.override().placeholder()获取error: cannot find symbol method

Glide.with(this)
            .load(imageUrl)
            .override(200, 200)
            .placeholder(R.drawable.ic_avatar_sign_up)
            .into(ivAvatar);

我该如何解决这个问题?

2 个答案:

答案 0 :(得分:35)

您应该使用 RequestOptions

包括以下方法:

  • centerCrop()
  • 占位符()
  • 误差()
  • 优先级()
  • diskCacheStrategy()
  • 优先级()
  • 覆盖(100,100)
  • 变换()

示例代码

Glide.with(this)
     .load(YOUR_URL)
     .apply(new RequestOptions().override(100, 100).placeholder(R.drawable.placeHolder).error(R.drawable.error_pic))
     .into(imageview);

答案 1 :(得分:3)

试试这个

Glide.with(this)
     .load(imageUrl)
     .apply(new RequestOptions().placeholder(R.drawable.ic_launcher).override(200, 200))
     .into(ivAvatar);