How to make the text direction from right to left

前端 未结 12 717
时光取名叫无心
时光取名叫无心 2020-11-29 01:00

I want to write text in (right to left language i.e. Arabic) in a TextView. But I want to make the text writing direction from right to left. gravity:rightwill

12条回答
  •  离开以前
    2020-11-29 01:32

    By using attributes as below in my xml code strangely I got a right to left text with correct punctuation. But this is not a perfect solution for multi language text:

    android:textDirection="ltr"
    android:gravity="right"
    

    setting ltr corrects punctuation problems like having dot on right side instead of left.

    gravity attribute makes text flow from right to left.

提交回复
热议问题