how to get total screen size on an android device programmatically

后端 未结 8 1603
旧巷少年郎
旧巷少年郎 2021-01-02 11:42

if i use the code shown here to get the total screen size it is always short on height to the total screen size as shown in the documented specs for the device. for example

8条回答
  •  说谎
    说谎 (楼主)
    2021-01-02 12:11

    try this code...
    
    Display display = context.getWindowManager()
                .getDefaultDisplay();
            int width = display.getWidth();
        int height=display.getHeight();
    
    
    it will give screen's width and height,And according to width and height write if-    conditions for each device's screen resolution. 
    

提交回复
热议问题