I want to display local html file on a WebView. (Android 2.3.3)

The HTML contains Hebrew text. I want the text to be justified, so in my css file I do the following:

body
{ 
    text-align: justify; direction: rtl;
}

But for some reason the text end up being messed up: Text aligned to left...

And this is definitely not "justified" but more aligned to the left.

Any idea how can overcome this problem? It's working perfectly fine on any other browser than the WebView. (Including WebKit based ones)

link|improve this question

I would appreciate it if could publish a solution if you find one. – Pinhassi Nov 6 '11 at 18:50
Trust me I will... But i can't find one! I hoped it will be solved in Ice Cream Sandwich – Avraham Shukron Nov 7 '11 at 7:46
1  
Form the text you put here I can see that all you need is simple text. I solved the alignment problem by using TextView. I get the string from the web, and then myTextView.setText(Html.fromHtml(str)); – Pinhassi Nov 8 '11 at 8:01
No, Actually I have some JavaScript going on, so I have to use a WebView. But Thanks for the idea! – Avraham Shukron Nov 8 '11 at 10:37
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.