how to write text right to left (Arabic Text)in Android ?

前端 未结 4 773
一个人的身影
一个人的身影 2020-12-11 01:53

I used Arabic text so, I want to write text from right to left so how i can write right to left text in android ?

Regards, Girish

相关标签:
4条回答
  • 2020-12-11 02:30

    Try with Bidi

    0 讨论(0)
  • 2020-12-11 02:30

    It looks like this is only possible starting with jelly bean

    0 讨论(0)
  • 2020-12-11 02:31
    1. Declare in your app manifest that your app supports RTL mirroring: add android:supportsRtl="true" to the element in your manifest file.
    2. Change all of your app's "left/right" layout properties to new "start/end" equivalents.

    Native RTL support in Android 4.2

    0 讨论(0)
  • 2020-12-11 02:40

    use this

    android:textDirection="rtl"

    android:gravity="right"

    0 讨论(0)
提交回复
热议问题