Set Indian Rupee symbol on text view Set Indian Rupee symbol on text view android android

Set Indian Rupee symbol on text view


enter image description here

Hi use this in Strings

For print rupee symbol: <string name="Rs">\u20B9</string>

For print Rs text: <string name="rs">\u20A8</string>


Use \u20B9 if you want to print the Rupee Symbol
and
Use \u20A8 if you want to print "Rs"


use on Adapter

Viewholder.price.setText("Price: \u20B9"+dataAdapterOBJ.getPrice());