Android Screen sizes

前端 未结 8 1469
野性不改
野性不改 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: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

提交回复
热议问题