Dinesh
Dinesh

Reputation: 181

The new rupee symbol's unicode doesn't show up on the android emulator

The new Indian rupee symbol with unicode "\u20B9" doesn't show up on the android emulator but it gets printed perfectly on the Log file. What could be the reason? Thank you.

Upvotes: 2

Views: 1715

Answers (1)

Dipin Narayanan
Dipin Narayanan

Reputation: 1105

Android's system font may not have our Indian currency symbol. You should use your own font embedded in you application to achieve this. and is required to support older versions of Android devices too.

You can download font from here or from here

And follow this tutorial to know about font embedding : http://www.barebonescoder.com/2010/05/android-development-using-custom-fonts/

Upvotes: 4

Related Questions