Android - What is the difference between Bitmap and Drawable?

1

I'm developing an application that does a CRUD to fill information on the screen. One such information is photos.

I would like to know more about the difference between these two objects to find out which one would be the right one to apply.

    
asked by anonymous 28.03.2018 / 22:50

1 answer

4

Drawable is something that can be drawn. For example. layout, vector image (line, circle), font, image, and so on

Bitmap - is a specific type of Drawable image, such as: PNG, JPEG or more

    
28.03.2018 / 22:54