Android: Get the screen resolution / pixels as integer values

前端 未结 5 1483
再見小時候
再見小時候 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:25

    You can get screen metrics in this way:

    Display d = ((WindowManager)getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay();
    int width = d.getWidth();
    int height = d.getHeight();
    

提交回复
热议问题