在AndroidStudio中,当我们用TextView用下面方式显示字符串时:
tvTime.setText(time++ "''");
然后android会给出警告"Do not concatenate text displayed with setText"。
当然AS会提示你解决办法:"use resource string with placeholders"
,告诉我们要使用占位符。
在String资源文件里面加上:
<string name="show_time">"%1$d''"</string>
java代码如下:
tvTime.setText( mContext.getString(R.string.show_time,time));
可是为什么我们最好不要在TextView的setText方法里面拼接字符串显示 ?
首先要明白不能直接在setText里面做的事情:
- 不要用数字的toString来格式化它,它不会正确处理分数分隔符和特定区域的数字.考虑使用String.format来使用的格式化它(%d or %f) 。
- 避免使用硬编码来显示字符串,硬编码字符串不能合适的转化成其它语言.
- 不要使用字符串拼接信息,这样字符串信息不能被合适的转译。就像硬编码一样。
这也就是为什么不能"concatenate text displayed with setText".