我把程序:
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
改成:
android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
但是为什么还是不能改变方向呢?
如果我使用 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
,能改变方向,我在 Android 2.3.4 上试验不可以实现。但是在 Android 4.0.2 上可以改变方向。这是为什么,如何避免?
在 AndroidManifest.xml 文件中设置 android:screenOrientation 属性来确定您的应用的屏幕方向。 例如,若要让应用始终保持竖屏,您可以使用:
android:screenOrientation="portrait"
若要让应用始终保持横屏,您可以使用:
android:screenOrientation="landscape"
在您的 Activity 中,您也可以使用 setRequestedOrientation() 方法来动态地改变屏幕方向。
记住,要想让应用能够支持横屏或竖屏,您还必须在应用的布局中处理这些方向。