QT 5.4 Android : hidpi
-
Unlike iOS , Qt in Android do not scale its content according to the DPI of screen. So the display unit of your application is still pixel , the DPI is ignored. Therefore , it will look very small on high DPI device.
It is suggested to use Android's display unit , dp , for your application to make it looks like an Android application.
You may find example code at :
https://github.com/benlau/quickandroid/tree/master/tests/quickandroidexample
-
For a cross-platform implementation of density-independent units and an overview how to support multiple screen sizes & densities, you can also see this blog post:
http://v-play.net/2014/11/supporting-multiple-screen-sizes-and-screen-densities-with-qt-and-v-play/