How to get screen width and height

后端 未结 14 1053
梦如初夏
梦如初夏 2020-12-12 20:31

I tried to use following code to get screen width and height in android app development:

Display display = getWindowManager().getDefaultDisplay(); 
int scree         


        
14条回答
  •  [愿得一人]
    2020-12-12 21:17

    Try with the following code to get width and height of screen

    int widthOfscreen =0;
    int heightOfScreen = 0;
    DisplayMetrics dm = new DisplayMetrics();
            try {
                ((Activity) context).getWindowManager().getDefaultDisplay()
                        .getMetrics(dm);
            } catch (Exception ex) {
            }
             widthOfscreen  = dm.widthPixels;
    heightOfScreen  = dm.heightPixels;
    

提交回复
热议问题