%d (表示整数)
%f (表示浮点数)
%s (表示字符串)
string.xml中:
<string name="test_xliff">小明家住在嵩山路<xliff:g id="xxx">%d</xliff:g>号,上<xliff:g id="yyy">%s</xliff:g>年级.</string>
代码中:
String test = String.format(getResources().getString(R.string.test_xliff), 168, "高中二");
输出:
小明家住在嵩山路168号,上高中二年级.