我正在尝试为CM引擎制作主题。我添加了一些资产但是当我尝试在通知面板中更改时钟颜色时,eclipse给了我这个:
assets/overlays/com.android.systemui/res/values/styles.xml:3: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.Expanded'.
assets/overlays/com.android.systemui/res/values/styles.xml:6: error: Error retrieving parent for item: No resource found that matches the given name '@android:style/TextAppearance.StatusBar.Expanded'.
这是 styles.xml :
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="TextAppearance.StatusBar.Expanded.Clock" parent="@android:style/TextAppearance.StatusBar.Expanded">
<item name="android:textColor">#ffD4AF37</item>
</style>
<style name="TextAppearance.StatusBar.Expanded.Date" parent="@android:style/TextAppearance.StatusBar.Expanded">
<item name="android:textColor">#ffD4AF37</item>
</style>
</resources>
答案 0 :(得分:0)
StatusBar样式适用于API 9及以上版本。
有用的链接;
Android.com Applying Styles and Themes, Using Platform Styles and Themes