In the app there is an item add an avatar in your account, when you add it - the picture is filled to the server and displayed as expected:
Good
But if i do restart the application, then image quality is lost:
Bad
When comparing the weight and size of the image between what was covered on the original server and all is fine, the weight and size is identical. Displaying an avatar comes directly from the server. What could be the problem?
Caching is missing, use Picasso. Code to display avatars:
Picasso.with(context).load(link).into(imageview);