我发现android源代码中的package / apps / UnifiedEmail包中有以下语句:
<add-resource name="RecipientEditTextViewStyle" type="style" />
这个“add-resource”元素是什么意思?
源代码:https://github.com/CyanogenMod/android_packages_apps_UnifiedEmail/blob/cm-11.0/res/values/attrs.xml
答案 0 :(得分:3)
<resources>
<string name="app1_name">MyAppName</string>
</resources>
与
相同<resources>
<add-resource type="string" name="app1_name">MyAppName</add-resource>
</resources>
所以
<add-resource name="RecipientEditTextViewStyle" type="style" />
与
相同<style name = "RecipientEditTextViewStyle"/>