Android: Showing wrong screen resolution

前端 未结 6 1034
说谎
说谎 2020-11-29 10:19

I was trying to get the screen resolution of android phones,using this code

    DisplayMetrics dm = new DisplayMetrics();
    getWindowManager().getDefaultDi         


        
6条回答
  •  天命终不由人
    2020-11-29 10:59

    Disable pre-scaling by adding this line to your manifest file:

    
    

    Position:

    
    
    
    
    
    
    
    ...
    

    After that your display will not be scaled anymore, and you also get the correct display resolution.

提交回复
热议问题