Bitmap too large to be uploaded into a texture

后端 未结 1 891
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-29 09:43

I\'ve in drawable directory an image file with the 960x1440 size. When the app start, the image is not loaded as background and in the logcat I see:

Bitmap t

相关标签:
1条回答
  • 2020-11-29 10:25

    an image in the /drawable/ folder without any specification is considered to be the "default", that is for 1dp = 1px that is mpdi, then because the device you're actually running is xxhdpi that image get's scaled up during runtime.

    The original image might be 960x1440, but the conversion from mdpi to xxhdpi is 3 times the size, so your 960x1440 becomes (3*960)x(3*1440) = 2880x4320, which is too large of a texture to apply to the hardware accelerated views.

    so to fix that is actually pretty simple, you have two choices:

    1. move your image to /drawable-nodpi/ that's simple, reduces the .apk size, but lower end devices might struggle to load such a big image.
    2. create scaled images on all densities mdpi, hdpi, xhdpi, xxhdpi to avoid runtime over-scaling and to have smaller images on older devices.
    0 讨论(0)
提交回复
热议问题