I have strings defined in the usual strings.xml Resource file like this:
HELLO
Is it pos
You should add formatted="false" to your string resource
formatted="false"
Here is an example
In your strings.xml :
strings.xml
Amount: %.2f%n for %d days
In your code:
yourTextView.setText(String.format(getString(R.string.all), 3.12, 2));