Android:使用默认样式

时间:2013-11-30 07:58:37

标签: android styles themes

<style name="test" parent="@android:style/WindowTitle"></style>

每当我输入上述内容时,我都会从eclipse中收到以下错误消息:

Description
Resource Path Location Type

error: Error retrieving parent for item: No resource found that matches the given name '@android:style/WindowTitle'.
styles.xml  /alertdialogapp/res/values  line 3  Android AAPT Problem

使用样式@android:style/AlertDialog

时,也会出现相同的错误

1 个答案:

答案 0 :(得分:2)

WindowTitleAlertDialog是平台中的私有样式,您无法引用它们。

aapt的一些古老版本有一个错误,允许你引用私人风格,但它很久以前就被修复了。私有样式资源标识符不能保证在平台构建中保持不变,因此即使您设法在某处挖掘资源标识符,它也可能会在某些时候中断。

如果您需要扩展特定的私有平台主题,请将您需要的样式定义从platform sources复制到您自己的项目中。