问题
I need to set the background picture for my app, the only problem is that i dont know what size the image has to be for XXHDPI devices.
I read here for MDPI, HDPI and XHDPI devices, but nothing for XXHDPI: Android splash screen image sizes to fit all devices
So, what size does the background has to be for drawable-xxhdpi folder?
回答1:
MDPI is your baseline. Means the base size.
LDPI is 0.75*MPDI
HDPI is 1.5*MDPI
XHDPI is 2*MPDI
XXHDPI is 3*MDPI
XXXHDPI is 4*MDPI
See this image for more information

Source: http://developer.android.com/guide/practices/screens_support.html
回答2:
You need this
and this: MDPI: x1, HDPI: x1.5, XHDPI: x2, XXHDPI: x3
来源:https://stackoverflow.com/questions/19661189/android-background-image-size-for-xxhdpi