Android 格式化字符串资源
示例
您可以在字符串资源中添加通配符,并在运行时填充通配符:
编辑strings.xml
<stringname="my_string">Thisis%1$s</string>
根据需要设置字符串格式
Stringfun="fun";
context.getString(R.string.my_string,fun);
您可以在字符串资源中添加通配符,并在运行时填充通配符:
编辑strings.xml
<stringname="my_string">Thisis%1$s</string>
根据需要设置字符串格式
Stringfun="fun";
context.getString(R.string.my_string,fun);