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
.
Glide.with(this)
.load(imageUrl)
.override(200, 200)
.placeholder(R.drawable.ic_avatar_sign_up)
.into(ivAvatar);
how can I fix this?
Try This
You should use RequestOptions
Includes methods like:
Sample code