Android 2.0:支持Actionbar库(没有资源的appcompat v7支持库):找不到资源@ style / Theme.AppCompat.Light.DarkActionBar

时间:2013-09-16 07:28:26

标签: android actionbarsherlock android-support-library

我按照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')。

2 个答案:

答案 0 :(得分:5)

如果你正在使用eclipse,添加兼容的库很容易: enter image description here

我希望这能解决你的问题。 从头开始做一个新项目并尝试这个,如果没有工作,我会尝试其他的事情。

答案 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/.

添加库项目:

  1. 在项目浏览器中,右键单击项目并选择“属性”。
  2. 在“库”窗格中,单击“添加”。
  3. 选择库项目,然后单击“确定”。例如,appcompat项目应列为android-support-v7-appcompat。
  4. 在属性窗口中,单击“确定”。