Android Screen sizes

前端 未结 8 1471
野性不改
野性不改 2020-12-02 23:30

I need to know the screen sizes of android devices to support multiple screen sizes application.

相关标签:
8条回答
  • 2020-12-03 00:26

    Android supports multitude of screen sizes. There is no list of specific screen sizes. Only approximate ranges. Read more at "Supporting Multiple Screens".

    0 讨论(0)
  • 2020-12-03 00:27

    Here's a little function to know the inch size of your device in case you need it to support multisize screen :

    public double getInchSize()
    {
        DisplayMetrics metrics = getResources().getDisplayMetrics();
        return Math.hypot(metrics.widthPixels/metrics.xdpi, metrics.heightPixels/metrics.ydpi)
    }
    

    Hope it can help

    0 讨论(0)
提交回复
热议问题