gpt4 book ai didi

android - 切换到 API21 AppCompat 后缺少 ActionBar

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:28:38 30 4
gpt4 key购买 nike

在处理 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

关于android - 切换到 API21 AppCompat 后缺少 ActionBar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27732341/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com