I'm trying to develop android app where I have html
files saved in asset folders, these files contain Arabic text like this قُلِ اللَّهُمَّ مَالِكَ الْمُلْكِ تُؤْتِي الْمُلْكَ مَنْ تَشَاءُ وَتَنْزِعُ الْمُلْكَ مِمَّنْ تَشَاءُ
I want to set textView
whit this text I tried Farsi class but it doesn't show it properly.
Any ideas?
Use android:textDirection with "anyRtl".
From xml: Add this line: android:textDirection="anyRtl"
to your TextView
tag.
From code: textview.setTextDirection(View.TEXT_DIRECTION_ANY_RTL);
PS: Since API 17+.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With