3

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

thirtydot
  • 224,678
  • 48
  • 389
  • 349
Harish
  • 3,122
  • 2
  • 31
  • 46

1 Answers1

3

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.

Arun Badole
  • 10,977
  • 19
  • 67
  • 96
  • The first one \u20B9 probably for Rupee symbol as given at http://www.fileformat.info/info/unicode/char/20b9/index.htm. As a alternative I gave Rs. – Arun Badole Sep 20 '11 at 13:46