Can´t center textview´s text vertically

前端 未结 7 1575
闹比i
闹比i 2021-02-09 16:20

[Solved] I had to add android:fillViewport=\"true\" to the ScrollView, that fixed the problem with the text not centering vertically.

I know this has been

7条回答
  •  梦谈多话
    2021-02-09 16:59

    To achieve the result you want, it will be enough to remove

    android:gravity="center_vertical"
    android:layout_alignBottom="@+id/icon"
    android:layout_alignTop="@+id/icon"
    

    and add

    android:layout_centerVertical="true"

    instead.

提交回复
热议问题