how to align text vertically center in android

后端 未结 5 1900
终归单人心
终归单人心 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:40

    Try to put android:gravity="center_vertical|right" inside parent LinearLayout else as you are inside RelativeLayout you can put android:layout_centerInParent="true" inside your scrollView.

提交回复
热议问题