Gujarati Font Rendering
Posted
by
Vishal Khakhkhar
on Stack Overflow
See other posts from Stack Overflow
or by Vishal Khakhkhar
Published on 2011-09-11T04:49:00Z
Indexed on
2012/12/13
5:04 UTC
Read the original article
Hit count: 247
I am having sqlite database containing gujarati words..
The sql query for the database is...
BEGIN TRANSACTION;
CREATE TABLE eng_guj (_id INTEGER PRIMARY KEY, eng_word , guj_word );
INSERT INTO eng_guj VALUES(1,'aardvark','??? ??????? ?????????? ?? ?????? ????? ??????.');
COMMIT;
I want to display the text in textview.. but its not rendering properly.. meant Its displaying the word in gujarati like "???????" will be displayed as "??????".
I already have used Typeface and different ttf fonts.
© Stack Overflow or respective owner