For localising my app I am using strings.xml for three languages
I have a statement
current balance: Rs. %0.2f
I populate this at runtime by using
getResources().getString(R.string.home_survey_text, user.demographicsPrice)
this seems to be working for English and Hindi where I get value as
current balance: Rs. 1.45
but for Kannada I am gettting
current balance: Rs. 1,45.
the comma is incorrectly being displayed. Need help with the same, stackoverflow reading recommendation anything that would help is appreciated.