Is it possible to have placeholders in strings.xml for runtime values?
Formatting and Styling Yes, see the following from String Resources: Formatting and Styling If you need to format your strings using String.format(String, Object…), then you can do so by putting your format arguments in the string resource. For example, with the following resource: <string name=”welcome_messages”>Hello, %1$s! You have %2$d new messages.</string> In this example, the … Read more