Format a string resource

suggest change

You can add wildcards in string resources and populate them at runtime:

  1. Edit strings.xml
<string name="my_string">This is %1$s</string>
  1. Format string as needed
String fun = "fun";
context.getString(R.string.my_string, fun);

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents