Android 复习string.xml中的替换符

\n                转行

\                转义符,string.xml中不能单独使用 ' 符号,必须添加转移符

\t                空格

%1$s        $s代表期望一个字符串替换内容,%1代表参数顺序

(String firstName = "Alice";
String lastName = "Smith";

String formatted = String.format("My name is %1$s %2$s.", firstName, lastName);
// 输出: My name is Alice Smith.)

%1$d        $d代表期望一个整数替换内容

(<string name="get_gold_toast">Get %1$d Coins</string>

val format =String.format(getString(R.string.get_gold_toast), 1)

// 输出: Get 1 Coins)

上一篇:Axure制作Web前端:深入剖析与实用技巧