java 添加变量String.xml。字体:https://code.tutsplus.com/tutorials/android-sdk-quick-tip-formatting-resource
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 添加变量String.xml。字体:https://code.tutsplus.com/tutorials/android-sdk-quick-tip-formatting-resource相关的知识,希望对你有一定的参考价值。
<string name="diseaseMessage">%1$s has %2$s!</string>
<string name="diseaseMessage2">%1$s has killed %2$s!</string>
String name = "Sally";
String disease = "Typhoid";
String strDisease1Format = getResources().getString(R.string.diseaseMessage);
String strDisease1Msg = String.format(strDisease1Format, name, disease);
String strDisease2Format = getResources().getString(R.string.diseaseMessage2);
String strDisease2Msg = String.format(strDisease2Format, disease, name);
INT => %1$d
STRING => %1$s
String Variable 1 => %1$s
Int Variable 2 => %2$d
Int Variable 3 => %3$d
以上是关于java 添加变量String.xml。字体:https://code.tutsplus.com/tutorials/android-sdk-quick-tip-formatting-resource的主要内容,如果未能解决你的问题,请参考以下文章
如何修改汇编win32中 static控件的字体颜色
javaAndroid开发,如何定义全局变量?
ActionScript 和 XML:拉入链接图像
BootStrap排版
java 从java类中的String.xml读取
Linux(Deepin)的eclipse窗口字体大小怎样调整