android判断横竖屏

1.
public boolean isScreenChange(){ Configuration mConfiguration = this.getResources().getConfiguration(); //获取设置的配置信息 int ori = mConfiguration.orientation ; //获取屏幕方向 if(ori == mConfiguration.ORIENTATION_LANDSCAPE){ return true; }else if(ori == mConfiguration.ORIENTATION_PORTRAIT){ return false; } return false; }

  

2.
Display display = getWindowManager().getDefaultDisplay(); int xxx = display.getWidth(); int yyy = display.getHeight(); if(xxx>yyy){ }else{ }

  

android判断横竖屏

上一篇:JNI在Android中的实践NDK:Hello World


下一篇:构建Vue项目