This chapter is from the book
Q&A
Q. If I am developing an app that displays images in a ListView, should I use BitmapFactory.Options to check the size of each image?
A. If you do not have control of the size of the images coming from the server, it is important to check size. If you do have control over the images, the ideal scenario is to have appropriately sized images. You can also use Picasso for handling images in code.