I'm trying to port an MDPI SystemUI.apk to HDPI. I've decompiled the file, added the line -
<supports-screens android:anyDensity="true" />
to AndroidManifest.xml, and also I've made drawable-hdpi folder with required images, but still it is loading resources from drawable-mdpi. Any ways to fix this?
By the way, the Android version is 4.0.4.
Android won't load HDPI resources if the system is not configured to be HDPI.
The system determines its density based on the configured display dpi value and will then try to load appropriate resources. There is a system property
ro.sf.lcd_density
for that. If you set that value to 240 the device will consider itself HDPI. (120 = low, 160 = med, 320 = xhigh)http://wccftech.com/article/increase-screen-dpi/ should tell you how you can change that value