Login
Remember
Register
Ask a Question
What is the difference between Bitmap and Drawable in Android?
0
votes
asked
Jun 22, 2020
in
JQuery
by
DavidAnderson
What is the difference between Bitmap and Drawable in Android?
#android
#android-bitmap
#drawable
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 22, 2020
by
DavidAnderson
A
Bitmap
is a representation of a bitmap image (something like java.awt.Image).
A
Drawable
is an abstraction of "something that can be drawn". It could be a Bitmap (wrapped up as a BitmapDrawable), but it could also be a solid color, a collection of other Drawable objects, or any number of other structures.
...