在开发经常遇到字符串中的某一数据或多个数据是动态变化如字符数组、设备的信息等
- %d 使用
1. <string name="warning_message">Android SDK(%d) >19 ,not support for this Device.</string>
在代码中调用如下:
<pre name="code" class="html">ShowDialog(Creat_Message.this,String.format(getResources().getString(R.string.warning_message), android.os.Build.VERSION.SDK_INT));
- % s 使用
- 一个%s
<string name="message">我选择为%s的玩具</string>
在代码中调用如下:
String test = String.format(getResources().getString(R.string.message), "红色");
2、两个或多个
<string name="alert">我的名字叫%1$s,我来自%2$s</string>
在代码中调用如下:
String sAgeFormatString sAgeFormat1= getResources().getString(R.string.alert);
String sFinal1 = String.format(sAgeFormat1, "李四","首都北京");
- %d %s 综合使用
<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), 7, "小学二");
<xliff:g>标签介绍:
属性id可以随便命名
属性值举例说明
%n
md:代表输出的是整数,n代表是第几个参数,设置m的值可以在输出之前放置空格,也可以设为0m,在输出之前放置m个0
%n$mf:代表输出的是浮点数,n代表是第几个参数,设置m的值可以控制小数位数,如m=2.2时,输出格式为00.00
也可简单写成:
%d (表示整数)
%f (表示浮点数)
%s (表示字符串)
网友评论