[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-14 Thread kolby
Mark, thanks for the tip on the URI encoding of the data for loadData. It worked like a charm. Apparently, I'm not the only one with this problem though. API documentation would go along way. Michael --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-14 Thread Fred Grott(shareme)
Kolby, Someone just updated javadocs for webview and etc in source..its in code review.. I found a lot of more answers ot webview question i had..hold on link is http://review.source.android.com/Gerrit#patch,sidebyside,8267,1,core/java/android/webkit/WebView.java On Feb 14, 7:55 am, kolby

[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-14 Thread kolby
Apparently the problem was not documentation, but my lack of understanding of the data: scheme. My bad, Michael On Feb 14, 10:08 am, Fred Grott(shareme) fred.gr...@gmail.com wrote: Kolby, Someone just updated javadocs for webview and etc in source..its in code review.. I found a lot of more

[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-14 Thread Chister Nordvik
Thanks! That did the trick :-) Seems like they changed the behavior in RC33, but now it works perfectly again. -Christer --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-14 Thread yhfudev
you may use: loadDataWithBaseURL (null, content, text/html, utf-8, about:blank); On Feb 13, 2:33 pm, Mark Murphy mmur...@commonsware.com wrote: Chister Nordvik wrote: String xml = html +   body +         Norwegian chars: aring;oslash; +   /body + /html; myWebView.loadData(xml,

[android-developers] Re: Has anyone succeeded in displaying non latin-1 characters in Webview after RC33?

2009-02-13 Thread Mark Murphy
Chister Nordvik wrote: String xml = html + body + Norwegian chars: aring;oslash; + /body + /html; myWebView.loadData(xml, text/html, UTF-8); This code works for latin-1 but as far as I know there are not HTML entities defined for Latin-2 so I was wondering if there are other