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.
Well android adjust its screen density according to device it working on, If you have both folders HDPI and MDPI available, it will take near best suitable resources for your application. Please check whether device is HDPI or not.
Also add following to supports-screen tag.