Android ActionBarSherlock v3.4.2生成错误

Android ActionBarSherlock v3.4.2生成错误,android,android-actionbar,actionbarsherlock,Android,Android Actionbar,Actionbarsherlock,我在IntelliJ IDEA中将ActionBarSherlock添加到一个Android项目中,我看到了以下构建错误 IDE中的所有内容都说我是根据平台API11构建的,我希望它会包含这些样式,尽管在API11中我看不到它们 我错过了什么?ABS是否只适用于更高版本的Android平台 Information:Compilation completed with 6 errors and 0 warnings Information:6 errors Information:0 warnin

我在IntelliJ IDEA中将ActionBarSherlock添加到一个Android项目中,我看到了以下构建错误

IDE中的所有内容都说我是根据平台API11构建的,我希望它会包含这些样式,尽管在API11中我看不到它们

我错过了什么?ABS是否只适用于更高版本的Android平台

Information:Compilation completed with 6 errors and 0 warnings
Information:6 errors
Information:0 warnings
C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml
    Error:Error:line (4)C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.ActionBar.TabBar'.
    Error:Error:line (5)C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml:5: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.ActionBar.TabView'.
    Error:Error:line (6)C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml:6: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.ActionBar.TabText'.
    Error:Error:line (8)C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml:8: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.Light.ActionBar.TabBar'.
    Error:Error:line (9)C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml:9: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.Light.ActionBar.TabView'.
    Error:Error:line (10)C:\Users\Ollie\Documents\Dropbox\Tech\Blah\ActionBarSherlock\res\values-v13\abs__styles.xml:10: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Holo.Light.ActionBar.TabText'.
有关资料来源:

<?xml version="1.0" encoding="utf-8"?>

<resources>
    <style name="Widget.Sherlock.ActionBar.TabBar" parent="android:Widget.Holo.ActionBar.TabBar"></style>
    <style name="Widget.Sherlock.ActionBar.TabView" parent="android:Widget.Holo.ActionBar.TabView"></style>
    <style name="Widget.Sherlock.ActionBar.TabText" parent="android:Widget.Holo.ActionBar.TabText"></style>

<style name="Widget.Sherlock.Light.ActionBar.TabBar" parent="android:Widget.Holo.Light.ActionBar.TabBar"></style>
<style name="Widget.Sherlock.Light.ActionBar.TabView" parent="android:Widget.Holo.Light.ActionBar.TabView"></style>
<style name="Widget.Sherlock.Light.ActionBar.TabText" parent="android:Widget.Holo.Light.ActionBar.TabText"></style>


在清单中有一个目标版本13。使用它。 在库的清单下面。


是的,我刚刚注意到Jake说“库本身必须根据Android 3.2(API级别13)构建。您的项目应该尽可能使用最新版本的SDK构建(最好尝试使用与库相同的版本)。但是,这不是一项要求,您可以根据Android 3.0(API级别11)或更高版本的SDK进行构建。”…并且(目前至少)低于14;)
    <uses-sdk
        android:minSdkVersion="4"
        android:targetSdkVersion="13" />

</manifest>