1、String#format
代码示例:
Log.e("Tag", String.format("name:%s, hashCode:%h", "name", obj.hashCode()));
更多细节请查看Formatter。
2、Context#getString中支持格式控制符:
代码示例:
<string name="string_xxx">%1$s猫了个咪啊</string>
String content = getContext().getString(R.string.string_xxx, "default");