Skip to content Skip to sidebar Skip to footer

How To Change The Size Of Bitmaps When Loaded From Xml

I know I can change the size of bitmaps loaded programmatically by using BitmapFactory.Options (i.e. forcing 32 via ARGB_8888 or 16 bit via RGB_565). Is there an equivalent when lo

Solution 1:

You cannot do this from XML, you have to do it from code.


Post a Comment for "How To Change The Size Of Bitmaps When Loaded From Xml"