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.

enter image description here

link|improve this question

42% accept rate
Hi...you better always try to use prepared statements for insert and fetch statements,because the above steps may cause problems on sometimes. – Senthil Mg Sep 28 '11 at 5:45
@vishal, did you get a solution for this problem? – Rajnikant Oct 13 '11 at 13:34
@Rajnikant no man.. not yet :( – Vishal Oct 14 '11 at 14:10
@Vishal i am not getting gujrati text in my application. i am using TypeFace to set gujrati but its not work. so can you explain me how to set gujrati text? thanks in advance. – Sanket Kachhela Dec 13 '11 at 9:21
I got the same error. So the error is reproducible. I tried to render Gujarati font using WebView but with no success. However, it works with TextView using certain fonts such as aakar-medium.ttf and Rekha.ttf (Both can be found here). However, I am still getting the error mentioned in this post. I think a work-around would be writing a similar algorithm as given on this link - See the source code given at anubadok.svn.sourceforge.net/viewvc/anubadok/branches/android. I am writing a similar algo and if I get it working - I will post it here. – Kapil Vyas Dec 21 '11 at 5:19
show 1 more comment
feedback

1 Answer

This implies that your UI framework is handling "Complex text layout" properly or it is not configured properly to handle right.

Devanagari scripts, require different contextual shapes and ordering in text, which require complex layout support with Unicode characters. see this

A forum here mentions that Android still doesn't have proper support to do this. But my information on this is limited.

Dipan.

link|improve this answer
yupp.. we are waiting for d Android Support.. – Vishal Nov 4 '11 at 5:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.