Any idea how to simulate qHD screen on android emulator. I tried to manually set the resolution, but the phone view is different from simulator view.
My application on phone is truncated, but not in emulator.
Thanks, M.
change the <uses-sdk.../>
in your AndroidManifest.xml
to the following:
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="8" />
worked for me :)