我按照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 文件并将它们添加到构建路径中
我的清单 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>
我收到了这个错误
错误:错误:找不到与给定名称匹配的资源(在“主题”处,值为“@style/Theme.AppCompat.Light.DarkActionBar”)。