my final solution was:
add a charset=utf-8
public static String BuildHtml(String _HtmlString)
{
StringBuilder sb = new StringBuilder();
sb.append("<html>");
sb.append("<meta http-equiv=\"Content-Type\" content=\"text/html;
charset=utf-8\">");
sb.append("<body style=\"direction:rtl;\">");
sb.append(_HtmlString.trim());
sb.append("</body>");
sb.append("</html>");
return sb.toString();
}
then calling it just before loadData..
myWebview.loadData(BuildHtml(mytext), "text/html", "utf-8");
I will glad to hear about (light) simple solution then that,for using a TextView instead of WebView..
thanks
http://www.wave-site.com/