当前位置: 代码迷 >> Android >> 【Android】利用Strings资源文件回格式化字符串
  详细解决方案

【Android】利用Strings资源文件回格式化字符串

热度:90   发布时间:2016-05-01 19:28:23.0
【Android】利用Strings资源文件来格式化字符串
在你的资源文件中添加下列资源:
<string name="mytext" formatted="false">The text is %s. The number is %d</string>


然后在Java代码中添加下列代码:
String strTest= String.format(getString(R.string.mytext), "TEST", 521);


最后执行,就可以得到想要的字符串【The text is TEST. The number is 521</string>】

我们要用到显示固定格式的地方,就不用那么麻烦的每次都去拼字符串,最重要的是,如果我们程序中有多处应用的话,改起来也很方便的,并且,我们不用去动代码就可以达到修改的目的。
  相关解决方案