我无法覆盖 android:switchStyle。这是我所做的:
在文件夹 values-v14 中,我有两个文件:
主题.xml:
<style name="AppTheme" parent="android:Theme.Holo.Light">
<item name="android:switchStyle">@style/SwitchAppTheme</item>
</style>
样式.xml:
<style name="SwitchAppTheme" parent="android:Widget.Holo.Light.CompoundButton.Switch">
<item name="android:track">@drawable/switch_track_holo_light</item>
<item name="android:thumb">@drawable/switch_inner_holo_light</item>
</style>
我有以下错误:
res/values-v14/styles.xml:4:错误:检索项目的父项时出错:找不到与给定名称“android:Widget.Holo.Light.CompoundButton.Switch”匹配的资源。
res/values-v14/themes.xml:5:错误:错误:找不到与给定名称匹配的资源:attr 'android:switchStyle'。
我对 NumberPicker 也有同样的问题:
主题.xml:
<item name="android:numberPickerUpButtonStyle">@style/NumberPickerButtonUpAppTheme</item>
<item name="android:numberPickerDownButtonStyle">@style/NumberPickerButtonDownAppTheme</item>
<item name="android:numberPickerStyle">@style/NumberPickerAppTheme</item>
样式.xml:
<style name="NumberPickerButtonUpAppTheme" parent="android:Widget.Holo.Light.ImageButton.NumberPickerUpButton">
<item name="android:src">@drawable/numberpicker_up_btn_holo_light</item>
</style>
<style name="NumberPickerButtonDownAppTheme" parent="android:Widget.Holo.Light.ImageButton.NumberPickerDownButton">
<item name="android:src">@drawable/numberpicker_down_btn_holo_light</item>
</style>
我有以下错误:
/res/values-v11/themes.xml:26:错误:错误:找不到与给定名称匹配的资源:attr 'android:numberPickerStyle'。
/res/values-v11/themes.xml:25:错误:错误:找不到与给定名称匹配的资源:attr 'android:numberPickerDownButtonStyle'。
/res/values-v11/themes.xml:25:错误:错误:找不到与给定名称匹配的资源:attr 'android:numberPickerUpButtonStyle'。
我的项目使用 SDK 16,所以它应该可用...... eclipse 和 IntelliJ 中的相同错误。
如何扩展这些样式?我可以以同样的方式扩展许多其他(buttonStyle、buttonStyleToggle、seekBarStyle...)...