切换到 API21 AppCompat 后缺少 ActionBar

ActionBar is missing after switching to API21 AppCompat

在 Big Nerd Ranch 的 Criminal Intent 项目上工作时,当我将 AppCompat 库从 API 19 更新到 API 21 时,我丢失了 ActionBar。我试过改变主题,但找不到获取 ActionBar 的方法。

完整的源代码可用 here

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sudhirkhanger.app.criminalintent" >

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

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".CrimePagerActivity"
            android:label="@string/app_name" >
        </activity>
    </application>

</manifest>

style.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
    </style>

</resources>

谢谢。

要使用 appcompat-v7,您必须 继承自 ActionBarActivityCrimeListActivity 继承自 SingleFragmentActivity,后者又继承自 FragmentActivity,而不是 ActionBarActivity

我也遇到了这个问题。

解决方案是从 manifest.xml (android:theme="@style/AppTheme") 中删除样式标签。

它将使用全息主题,但带有操作栏。

我也遇到了这个问题,我移动了整条线 (android:theme="@style/AppTheme) 及其作品!主题是深色主题,看起来更好。