我可以像这样在资源中的字符串中添加相同的字符串吗?
<string name="text_base">Same text</string>
<string name="text_base_my_text">@string/text_base + and new text</string>
我可以在 text_base_my_text “相同文本和新文本”中获取字符串吗?
我可以像这样在资源中的字符串中添加相同的字符串吗?
<string name="text_base">Same text</string>
<string name="text_base_my_text">@string/text_base + and new text</string>
我可以在 text_base_my_text “相同文本和新文本”中获取字符串吗?
是的,你可以<string name="Hor">@string/Cli</string> <string name="Cli">HOLA</string>
在 string.xml 中,当你参考时你可以看到“HOLA”@string/Hor
如果您是android内部的文字,那么一切都是文字。我的意思是:
<string name="text_base">Same</string>
<string name="other">@string/text_base + new text </string>
@string/text_base + new text
当您引用 @string/other 时,
您会看到
但是如果你把:
<string name="text_base">Same</string>
<string name="other">@string/text_base</string>
当你提到@string/other
你会看到Same