在 android 中,我可以应用基于版本的自定义样式:
+-res/values-v14/styles.xml
+-res/values/styles.xml
但是,如何根据版本应用定义的样式?
在值/styles.xml 中:
<style name="spinner_textview">
<item name="style">@android:style/Widget.Spinner></item>
</style>
以下行导致eclipse中的错误
<item name="style">@android:style/Widget.Spinner</item>
Eclipse 说:找不到与给定名称匹配的资源:attr 'style'。
有没有办法可以应用基于 api 版本的样式?
PS:我正在尝试申请@android:style/Widget.DeviceDefault.Spinner
a TextView
,但该样式仅在 api 14+ 中可用;