How to align the text inside the TextView in Android? How to align the text inside the TextView in Android? android android

How to align the text inside the TextView in Android?


Did you try the gravity attribute on the TextView ?

  android:gravity="center"

And make sure to use android:gravity and not android:layout_gravity.


android:gravity="center_horizontal" should do the trick.

More information could be found here or here.


Yes, use android:gravity attribute to change the position of data inside views.