You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our App is a photos app, there are two important Activities.
Activity 1 is album cover list
Activity 2 is showing the every photo of album.
For displaying high quality images in Acitivity 2, we set the decode format is ARGB8888, but it will be cause more memory usage. so we want to config the decode format of glide is ARGB565
But we don't know how to config.
Glide Version 3.7.0
The text was updated successfully, but these errors were encountered:
(.asBitmap() turns off .crossFade(), if you need that (#1096), you can start using the 3.8.0 snapshot)
Note: 565 doesn't have alpha channel: 5 bits of Red, 6 bits of Green, 5 bits of Blue, so it's only 16 bits, hence half the space as an 8888 (32 bit) image, but lower quality, because not all colors can be expressed.
Our App is a photos app, there are two important Activities.
Activity 1 is album cover list
Activity 2 is showing the every photo of album.
For displaying high quality images in Acitivity 2, we set the decode format is ARGB8888, but it will be cause more memory usage. so we want to config the decode format of glide is ARGB565
But we don't know how to config.
Glide Version 3.7.0
The text was updated successfully, but these errors were encountered: