Nick
Nick

Reputation: 2948

Clear method Glide Android

I have a question about Glide's clear method. Docs says:

Cancel any pending loads Glide may have for the view and free any resources that may have been loaded for the view.

Which resources it is referring to? Deletes image from disk and cache? or clear the reference to imageView?

Upvotes: 1

Views: 308

Answers (1)

2hamed
2hamed

Reputation: 9067

The resource here is referring to any loaded bitmap data or drawables which was supposed to be loaded inside the view.

Upvotes: 2

Related Questions