How to set the text direction in WebView to RTL (Right To Left)?

android, webview

Solution

Add body tag then set to WebView. for example:

<body dir="rtl">

</body>

Problem

Like Arabic & Hebrew and another RTL languages ,i want to set the text direction in WebView to RTL instead of default LTR .. How to make that ?

Original source