我正在尝试使用带有ABS的HoloEveryWhere。我从答案中接受了这个小教程:Error importing HoloEverywhere
最后一步是在我的清单中添加:
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.HoloEverywhereDark.Sherlock">
我添加了主题,但它在Eclipse中给我一个错误。
error: Error: No resource found that matches the given name (at 'theme' with value '@style/
Theme.HoloEverywhereDark.Sherlock').
我该如何解决这个问题?我肯定在我的应用程序中将ABS和HE作为库导入。我还在HE中导入ABS作为库。想法?
答案 0 :(得分:2)
使用@ style / Holo.Theme
由于1.3(?)主题名称被改为Holo.Theme [.Light [.DarkActionBar]]。Sherlock。 从1.4删除后缀.Sherlock。
答案 1 :(得分:0)
只需将清单更改为
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Holo.Theme.Light.DarkActionBar" >
它像魅力一样工作