阻止屏幕旋转 - Android

时间:2014-10-12 19:11:47

标签: java android screen

我想将屏幕保持在纵向位置,并且不允许在我的应用中旋转屏幕。我该怎么做?

1 个答案:

答案 0 :(得分:2)

我可以回忆两种方法,或者尝试在你的清单中放置一个ScreenOrientation:

android:screenOrientation="portrait" // OR "landscape"

或者只是在代码中执行以下操作:

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); // ORActivityInfo.SCREEN_ORIENTATION_LANDSCAPE