i am using latest version of Glide as of now which is glide:4.0.0-RC1 and not able to find methods like placeholder, error, fallback e.t.c. Probably they have provided alternate for it but i am not getting it. Anybody know about there alternatives in this release?
Asked
Active
Viewed 2,921 times
7
-
Read documentation of Glide. There might be given a description. – Piyush Jul 19 '17 at 10:38
2 Answers
11
try this
RequestOptions requestOptions = new RequestOptions();
requestOptions.placeholder(R.mipmap.ic_launcher);
requestOptions.error(R.drawable.error_img);
Glide.with(this)
.setDefaultRequestOptions(requestOptions)
.load("")
.into(imageViewPlaceholder);

Oussema Aroua
- 5,225
- 1
- 24
- 44
1
Checkout migration details from here. Looks like they had lot more improvements.
You have new class RequestOptions:
RequestOptions options = new RequestOptions()
.centerCrop()
.placeholder(R.drawable.placeholder)
.error(R.drawable.error)
.priority(Priority.HIGH);
Then,
Glide.with(fragment/activity)
.load(url)
.apply(options)
.into(imageView);
To learn more about Migration Details, you can go here.

Chintan Soni
- 24,761
- 25
- 106
- 174