什么" add-resource"在Android资源xml文件中吗?

时间:2014-11-12 03:14:50

标签: android android-resources

我发现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

1 个答案:

答案 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"/>