我一直在努力了解如何确定public.xml中定义的属性的默认值。例如,我想知道textColorPrimary的默认值是什么。浏览系统xml文件会产生:
• attrs.xml: <attr name="textColorPrimary" format="reference|color" />
• themes.xml: <item name="textColorPrimary">@color/primary_text_dark</item>
• public.xml: <public type="attr" name="textColorPrimary" id="0x01010036" />
当搜索primary_text_dark时,我得到的就是这个。
• public.xml: <public type="color" name="primary_text_dark"
id="0x01060001" />
所以我的问题是,“0x01060001引用了什么?”。即,什么是darn默认颜色: - )???
谢谢, 百里