<?xml version="1.0" enCoding="utf-8"?><resources xmlns:androID="http://schemas.androID.com/apk/res/androID"> <style name="Apptheme" parent="@style/theme.AppCompat.light.DarkActionbar"> <item name="androID:actionbarStyle">@style/Actionbartheme</item> </style> <style name="Actionbartheme" parent="androID:Widget.Actionbar"> <item name="androID:background">#FFFF0000</item> </style></resources>
但是,Eclipse在actionbarStyle行中抱怨.错误是这一个:
androID:actionbarStyle需要API级别11(当前最小值为8)
如何将我的主题应用于API级别8-10?
解决方法 您需要提供两个API特定的styles.xml.在您的values / styles.xml中使用<style name="Apptheme" parent="@style/theme.AppCompat.light.DarkActionbar"> <item name="actionbarStyle">@style/Actionbartheme</item></style>
并在你的values-v14 / styles.xml中使用
<style name="Apptheme" parent="@style/theme.AppCompat.light.DarkActionbar"> <item name="androID:actionbarStyle">@style/Actionbartheme</item></style>总结
以上是内存溢出为你收集整理的android – 将主题应用于v7支持 *** 作栏全部内容,希望文章能够帮你解决android – 将主题应用于v7支持 *** 作栏所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)