2
我想以我的默认listview主题为主题。 我已经阅读了很多在网络上的东西,他们都称这应该工作:错误:找不到与给定名称匹配的资源:attr'listViewStyle'
<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/