在你的资源文件中添加下列资源:
<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>】
我们要用到显示固定格式的地方,就不用那么麻烦的每次都去拼字符串,最重要的是,如果我们程序中有多处应用的话,改起来也很方便的,并且,我们不用去动代码就可以达到修改的目的。