0

大家好,我是 Sherlock Actionbar 的新手,我的示例应用程序中有一个非常奇怪的问题。问题是,当我从纵向旋转到横向时,它的行为是正常的,但是当我旋转回纵向模式时,布局不会变回纵向模式。

以下是我面临的问题的屏幕截图。

原屏 在此处输入图像描述

旋转到横向 在此处输入图像描述

再次旋转回原始方向,即纵向模式 在此处输入图像描述

正如您在第三张图片中看到的那样,我面临的问题。

我正在使用最新版本的 ActionbarSherlock 库。

编辑了 我的清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.actionbar_sherlockexample"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="17" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.actionbar_sherlockexample.MainActivity"
        android:theme="@style/Theme.Sherlock"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

</manifest>

谢谢

4

1 回答 1

1

这是 emulator 的问题。如果您将在真实设备上运行它,它将正常工作。

于 2013-05-03T07:01:43.267 回答