1

我已将活动 1 的方向设置为纵向。现在,当我从活动 1 开始活动 2 时,我的第二个活动方向变为纵向,并且不会变为横向。任何建议一定是错的。

4

2 回答 2

0

每当您旋转屏幕时,在您的清单文件中添加以下内容会改变

<activity
            android:name=".Login"
            android:configChanges="keyboardHidden|orientation"

            >
        </activity>



android:screenOrientation=["unspecified" | "user" | "behind" |
                                     "landscape" | "portrait" |
                                     "reverseLandscape" | "reversePortrait" |
                                     "sensorLandscape" | "sensorPortrait" |
                                     "sensor" | "fullSensor" | "nosensor"]
于 2013-01-04T06:07:06.173 回答
0

将此属性设置为清单中的第二个活动 android:screenOrientation="landscape"

http://developer.android.com/guide/topics/manifest/activity-element.html

于 2013-01-04T06:08:32.767 回答