本文介绍了连接字符串在Android版的strings.xml文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
可以串联与当前的strings.xml已经存在的String。结果
那就是:如果我有
Is possible to concatenate a String already existing in strings.xml with the current one.
That is: If I have
<string name="hello">hello</string>
和我想创建与格式一个新的字符串你的Android说:你好+
推荐答案
恐怕不可能在的strings.xml
。
你可以做的是编程方式创建最终的字符串。喜欢的东西。
What you can do is create the final string programmatically. Something like.
String outStr = getString(R.string.your_android_says) +
" " + getString(R.string.hello);
这篇关于连接字符串在Android版的strings.xml文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!