Harish
Harish

Reputation: 3117

how can i get rupee symbol in app through keyboard

can anybody help me in getting the Rupee currency symbol font in textview through keyboard.

Upvotes: 3

Views: 1554

Answers (1)

Arun Badole
Arun Badole

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 Rs

This is not characters written like Rs it is equivalent of \u20A8.

Hope it helps.

Upvotes: 3

Related Questions