I am setting text using setText() by following way.
prodNameView.setText(\"\" + name); prodOriginalPriceView.setText(\"\" + String.format(g
You should check this thread and use a placeholder like his one (not tested)
Price : %1$d String text = String.format(getString(R.string.string_product_rate_with_ruppe_sign),new BigDecimal(price).setScale(2, RoundingMode.UP)); prodOriginalPriceView.setText(text);