获取屏幕高度和宽度


参考文章:https://blog.csdn.net/u012527802/article/details/44645731

前面有几个方法已经过时了,我们使用新的方法。

this是一个activity对象

WindowManager manager = this.getWindowManager();
DisplayMetrics outMetrics = new DisplayMetrics();
manager.getDefaultDisplay().getMetrics(outMetrics);
int width2 = outMetrics.widthPixels;
int height2 = outMetrics.heightPixels;

文章作者: 小游
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 小游 !
  目录