Skip to content Skip to sidebar Skip to footer

How To Add Indian Rupee Symbol?

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........................ Tab1Activ

Solution 1:

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

Post a Comment for "How To Add Indian Rupee Symbol?"