0
votes

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

3

3 Answers

2
votes

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"
0
votes

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

0
votes

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