How to make the text direction from right to left

前端 未结 12 718
时光取名叫无心
时光取名叫无心 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:31

    Try using

     textview.setTextDirection(View.TEXT_DIRECTION_RTL);
    

    or

     textview.setTextDirection(View.TEXT_DIRECTION_ANY_RTL);
    

提交回复
热议问题