I am developing an application. And i need to set the symbol of Indian rupee on text view which is set with the text as amount.
Symbol:
public static String getIndianRupee(String value) { Format format = NumberFormat.getCurrencyInstance(new Locale("en", "in")); return format.format(new BigDecimal(value)); }