人们经常链接以下内容来解释格式化的字符串,任何人都可以向我展示如何使用它的工作示例吗?
<string name="welcome_messages">Hello, %1$s! You have %2$d new messages.</string>
Resources res = getResources();
String text = String.format(res.getString(R.string.welcome_messages), username, mailCount);
答案 0 :(得分:0)
字符串的名称是&#34; welcome_message&#34;,例如,您想要将格式化文本添加到组件中,只需编辑layout.xml,找到您的组件,并在组件上设置要使用的文本字符串
component < ....
android:text="@string/welcome_message
... />