Error: No resource found that matches the given name: attr 'listViewStyle'
我从这里尝试了一切。没有什么工作。
我已经在API版本15的eclipse中导入了API演示,并且在src文件中也出现了错误,例如“导入com.example.android.apis.R无法解析”
请帮帮我。
我在values-v11/styles.xml
档案
<style name="ThemeHolo" parent="android:Theme.Holo">
</style>
<!-- For API level 11 or later, the Holo theme is available and we prefer that. -->
<style name="ThemeHoloDialog" parent="android:Theme.Holo.Dialog">
</style>
<!-- For API level 11 or later, we can use the magical DialogWhenLarge theme. -->
<style name="ThemeDialogWhenLarge" parent="android:style/Theme.Holo.DialogWhenLarge">
</style>
并且我在values / styles.xml中也有错误“错误:检索项目的父项时出错:找不到与给定名称匹配的资源'@android:style / Theme.Holo.Light.NoActionBar'。”在以下几行
<style name="BadTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
</style>
答案 0 :(得分:31)
您可以将Holo主题称为parent="@android:style/Theme.Holo"
,但要使用Holo主题,您必须将清单中的构建目标设置为API级别11或更高级别,您还必须放置{{1}包含文件夹style.xml
答案 1 :(得分:20)
只需删除HOLO,因为此资源不适用于该API级别
parent="android:Theme.Light"
答案 2 :(得分:3)
将清单的 android:targetSdkVersion 值更改为正确的版本为我解决了这个问题。
答案 3 :(得分:1)
即使在属性等中使用了正确的设置,我也遇到了类似的问题。这似乎是Eclipse的一个问题。我删除了xml文件的内容,然后“保存”,然后再输入值,即
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
再次“保存”。
答案 4 :(得分:0)
你准备好了吗?
<item name="android:listViewStyle">
答案 5 :(得分:0)
我通过添加
解决了同样的问题 android:theme="@style/AppTheme"
在AndroidManifest.xml文件的application标记内。这将识别应用主题。
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:debuggable="true" >
<activity
...
</activity>
...
</application>