Hi,
i am developing a game with canvas. I want use the Android internal autoscaling feature (anydensity=false;) only for large density screens. Is it possible to enable this graphics (in the drawable folder) scaling function only for large screens. For smallscreens my Game Engine does automatically manage the presentation.
I attempted the following in the manifest.xml:
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="false"
android:anyDensity="false" />
.. but it doesnt work, Android does also downscale the graphics for smallScreens.
Thank you!