Reputation: 3117
can anybody help me in getting the Rupee currency symbol font in textview through keyboard.
Upvotes: 3
Views: 1554
Reputation: 11097
Try this <string name="Rs">\u20B9</string>
it may be what you are looking for or
As alternative try adding this
<string name="rs">\u20A8</string>
in strings.xml and then use onKeyListener or whatever suits you to use rs string.
This will produce a symbol like
This is not characters written like Rs it is equivalent of \u20A8.
Hope it helps.
Upvotes: 3