Android布局文件Value中设置格式字符串并在Java代码中使用的一点说明

以Value中的string.xml为例,
<resources>
    <string name="test">Current ID: %$1d, \nTitle: %$2s</string>
    ... ...
</resources>

在Java代码中:

String strTest = getResources().getString(R.string.test);
String strInfo = String.format(strTest, 10126, "reg");

你可能感兴趣的:(Android布局文件Value中设置格式字符串并在Java代码中使用的一点说明)