切换到API21 AppCompat后缺少ActionBar

时间:2015-01-01 16:03:13

标签: android android-actionbar android-appcompat

当我将AppCompat库从API 19更新为API 21时,在为Big Nerd Ranch的犯罪意图项目工作时,我丢失了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>

感谢。

3 个答案:

答案 0 :(得分:7)

要使用appcompat-v7,您必须继承ActionBarActivityCrimeListActivity继承自SingleFragmentActivityFragmentActivity继承自ActionBarActivity,而不是{{1}}。

答案 1 :(得分:0)

我也遇到过这个问题。

解决方案是从manifest.xmlandroid:theme="@style/AppTheme")删除样式标记。

它将使用holo主题,但使用Action Bar。

答案 2 :(得分:0)

我也有这个问题我移动了整行(android:theme="@style/AppTheme)及其作品!主题是一个看起来更好的黑暗主题。