Horizontally and Vertically center text for TextVi

2019-06-13 17:03发布

How do I center the text horizontally and vertically for a TextView in Android? How do I center the alignment of a TextView?

3条回答
别忘想泡老子
2楼-- · 2019-06-13 17:46

add this property for textview in xml

textview<android:height="yourheight"
android:width="yourwidth"
android:gravity="center">

your width size should be less than the parent container's width size

查看更多
一纸荒年 Trace。
3楼-- · 2019-06-13 17:47

In Linear Layouts use

android:layout_gravity="center"

In Relative Layouts

android:layout_centerInParent="true"

Above Code will center the textView in layout To center the text in TextView

android:textAlignment="center"
android:gravity="center"
查看更多
地球回转人心会变
4楼-- · 2019-06-13 17:59

It depends on how you have declared the height and width. If you used wrap_content, then the textview is just big enough in that direction to hold the text, so the gravity attribute will not apply. android:gravity affects the location of the text Within the space allocated for the textview. layout_xx attributes affect the location of the view within it's parent.

SO if you set the size of the textview, then use gravity to position the text within the textview area, if you used wrap_content, then use the layout_xx attributes to position the textview within it's parent

查看更多
登录 后发表回答