其他分享
首页 > 其他分享> > Android资源xml文件中的“ add-resource”有什么作用?

Android资源xml文件中的“ add-resource”有什么作用?

作者:互联网

我发现在android源代码的package / apps / UnifiedEmail包中有以下语句:

<add-resource name="RecipientEditTextViewStyle" type="style" />

这个“添加资源”元素是什么意思?

源代码:https://github.com/CyanogenMod/android_packages_apps_UnifiedEmail/blob/cm-11.0/res/values/attrs.xml

解决方法:

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

标签:android-resources,android
来源: https://codeday.me/bug/20191121/2048885.html