在开发android的应用中,有时候需要限制横竖屏切换。只需要在AndroidManifest.xml文件中加入android:screenOrientation属性限制。

ndroid:screenOrientation="landscape"是限制此页面横屏显示, 
ndroid:screenOrientation="portrait"是限制此页面数竖屏显示。 
例如:我现在想让所有的页面不管怎么样都竖屏显示,则我的AndroidManifest.xml应该这样写: 
<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:andro></activity> 
    </application> 
</manifest>

相关文章: