How to add indian rupee symbol?

前端 未结 1 887
悲&欢浪女
悲&欢浪女 2021-01-28 11:58

I am new to android,In my application I used json,and I am getting price of product and I am trying to add indian rupee symbol,but its not showing........................

<
相关标签:
1条回答
  • 2021-01-28 12:10

    Try adding the Ruppee symbol before the amount in hash map :

    map.put(PRODUCT_SALERATE, getResources().getString(R.string.rupee) + c.getString(PRODUCT_SALERATE));
    

    After checking discussion Chat

    , I think this is missing part

    0 讨论(0)
提交回复
热议问题