how to align text vertically center in android

后端 未结 5 1909
终归单人心
终归单人心 2021-02-02 06:14

I have arabic text, therefore I set gravity to right in order to start text from right side. Text starts from right now. But another issue is text starts to render from the top

5条回答
  •  死守一世寂寞
    2021-02-02 06:38

    In relative layout you need specify textview height:

    android:layout_height="100dp"
    

    Or specify lines attribute:

    android:lines="3"
    

提交回复
热议问题