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
.
You should use RequestOptions
Includes methods like:
Sample code
Glide.with(this)
.load(YOUR_URL)
.apply(new RequestOptions().override(100, 100).placeholder(R.drawable.placeHolder).error(R.drawable.error_pic))
.into(imageview);
Try This
Glide.with(this)
.load(imageUrl)
.apply(new RequestOptions().placeholder(R.drawable.ic_launcher).override(200, 200))
.into(ivAvatar);