我按照http://developer.android.com/guide/topics/ui/actionbar.html链接在Android 2.0中实施ActionBar
我遵循了以下程序。
i)创建新项目
ii)在我的项目中创建一个libs文件夹
iii)包括android-support-v13.jar& android-support-v7-appcompat.jar文件并在构建路径中添加它们
My Manifiest xml文件是
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tgactionbar"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<activity
android:name="com.example.tgactionbar.MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我收到了这个错误
错误:错误:找不到与给定名称匹配的资源(在'theme'处有值 '@风格/ Theme.AppCompat.Light.DarkActionBar')。
答案 0 :(得分:5)
如果你正在使用eclipse,添加兼容的库很容易:
我希望这能解决你的问题。 从头开始做一个新项目并尝试这个,如果没有工作,我会尝试其他的事情。
答案 1 :(得分:1)
要为操作栏添加v7 appcompat库,则需要使用资源添加库: http://developer.android.com/tools/support-library/setup.html#download
在项目构建路径中包含 android-support-v7-appcompat.jar 和 android-support-v4.jar 文件后,您必须还添加了支持库项目。它可以在
找到<sdk>/extras/android/support/v7/appcompat/.
添加库项目: