Android 格式化字符串资源
示例
您可以在字符串资源中添加通配符,并在运行时填充通配符:
编辑strings.xml
<string name="my_string">This is %1$s</string>
根据需要设置字符串格式
String fun = "fun";
context.getString(R.string.my_string, fun);
以上是 Android 格式化字符串资源 的全部内容, 来源链接: utcz.com/z/337870.html
您可以在字符串资源中添加通配符,并在运行时填充通配符:
编辑strings.xml
<string name="my_string">This is %1$s</string>
根据需要设置字符串格式
String fun = "fun";
context.getString(R.string.my_string, fun);
以上是 Android 格式化字符串资源 的全部内容, 来源链接: utcz.com/z/337870.html