Glide 4.3.1 override and placeholder features not work

后端 未结 2 2014
梦毁少年i
梦毁少年i 2021-01-17 09:35

I update my glide to 4.3.1 but all over I use glide the feature .override() and .placeholder() get error: cannot find symbol method.

2条回答
  •  南笙
    南笙 (楼主)
    2021-01-17 10:14

    Try This

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

提交回复
热议问题