安卓如何限制横屏和竖屏

在开发android的应用中,有时候需要限制横竖屏切换。

只需要在AndroidManifest.xml文件中加入android:screenOrientation属性限制。

android:screenOrientation="landscape"是限制此页面横屏显示, 
android:screenOrientation="portrait"是限制此页面数竖屏显示。

原文地址:https://www.cnblogs.com/atong/p/3368431.html