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.
