我正在尝试使用ActionBarSherlock开发一个应用程序,除了主题外,一切正常。具体来说,我可以import com.actionbarsherlock.app.*
,扩展SherlockActivity
,但我的清单中始终存在此错误:
Error: No resource found that matches the given name (at 'theme' with value
'@style/Theme.Sherlock').
我知道有很多问题要问这个,但它们对我没用。我试过了
<activity>
和<application>
我尝试了以下变体,可能还有其他变种:
android:theme="@style/Theme.Sherlock"
android:theme="@android:style/Theme.Sherlock"
theme="@style/Theme.Sherlock"
theme="@android:style/Theme.Sherlock"
theme="@theme/Theme.Sherlock"
theme="@android:theme/Theme.Sherlock"
值得注意的是,我输入"@style/"
之后的自动填充功能没有显示任何内容,所以我尝试在styles.xml
中创建自己的风格然后显示但ActionBarSherlock仍然没有。
此外,在styles.xml
中,我尝试将自己的主题扩展为Theme.Sherlock
,并且当我尝试将其添加为父级时,找不到@style/Theme.Sherlock
。
我尝试加载样本但得到JAR不匹配。
我的结论是,我的xml文件无法访问ABS库,但我不知道如何修复它。任何帮助都非常感激。
答案 0 :(得分:13)
在项目的属性&gt; Android,您是否包含对com_actionbarsherlock
项目的引用?