Android: How to get the real screen size of the device?

前端 未结 4 1112
温柔的废话
温柔的废话 2021-02-05 18:11

I have tried different ways to get the screen size of the device, but it always returned me the wrong size (791x480 instead of 854x480). It might be du

4条回答
  •  死守一世寂寞
    2021-02-05 18:39

    Try calling

        display.getRealSize();
    

    DISCLAIMER: I did not realize this, but this will only work for API 17 (Android 4.2/JellyBean) and up.

提交回复
热议问题