错误:找不到与给定名称匹配的资源:attr'listViewStyle'

时间:2011-11-19 09:43:41

标签: android listview themes

我正在尝试设置我的默认listview主题。 我在网上看过很多东西,他们都说这应该有用:

<style name="Theme.MyTheme" parent="@style/Theme.Sherlock.Light">
    <item name="textColor">@color/darkblue</item>
    <item name="listViewStyle">@style/MyListViewTheme</item>
</style>

使用ListView的这个主题:

<style name="MyListViewTheme" parent="@android:style/Widget.ListView">
    <item name="android:textColor">@color/darkblue</item>
    <item name="android:typeface">sans</item>
</style>

不幸的是,我收到了这个错误:

Error: No resource found that matches the given name: attr 'listViewStyle'.

我真的不明白为什么我不能使用listViewStyle属性。

来源:

http://brainflush.wordpress.com/2009/03/15/understanding-android-themes-and-styles/

http://www.devdaily.com/java/jwarehouse/android-examples/platforms/android-2/data/res/values/themes.xml.shtml

1 个答案:

答案 0 :(得分:4)

我觉得很蠢!

<item name="android:listViewStyle"> 

而不是

<item name="listViewStyle">