Set Indian Rupee symbol on text view

前端 未结 9 1985
[愿得一人]
[愿得一人] 2020-12-02 12:45

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:

9条回答
  •  一整个雨季
    2020-12-02 13:23

     public static String getIndianRupee(String value) {
        Format format = NumberFormat.getCurrencyInstance(new Locale("en", "in"));
        return format.format(new BigDecimal(value));
    }
    

提交回复
热议问题