How to set the text direction in WebView to RTL (Right To Left)? [Android Studio]

426 Views Asked by At

When I log in to the app, I see the Webview starting from left to right.

I tried to change through the left-to-right management panel - it didn't work for me. I tried some guides and it also did not work for me.

Anyone know where I'm supposed to do this from? From the website files or through Android Studio? And if so, how exactly?

1

There are 1 best solutions below

2
On

I think by adding the following css code in your website's <style> tag you can achieve right to left direction.

 body { direction: rtl; }

Or change your <html> tag into

 <html dir="rtl">

If it doesn't work, let me know.