Android: Get the screen resolution / pixels as integer values

前端 未结 5 1482
再見小時候
再見小時候 2020-12-05 08:38

this is a really simple question on which I\'ve found no answer :/ How can I quickly access the screen resolution (width, height) as integer values?

I\'ve tried this

5条回答
  •  渐次进展
    2020-12-05 09:15

    I use the following:

    int scrWidth  = getWindowManager().getDefaultDisplay().getWidth();
    int scrHeight = getWindowManager().getDefaultDisplay().getHeight();
    

    No muss, no fuss, just 2 class variables

提交回复
热议问题