android-通过代码将方向设置为纵向
作者:互联网
我知道我可以从清单文件中限制方向.像这样
android:screenOrientation="portrait"
但是可以通过代码设置方向吗?
例如,可以通过清单和代码this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN)将活动设置为全屏.
解决方法:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
标签:android,portrait,manifest,screen-orientation,orientation 来源: https://codeday.me/bug/20191011/1892489.html