if your width is wrap_content, you should set gravity and layout_gravity as "center_horizontal"
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="two\nlines" android:layout_gravity="center_horizontal" android:gravity="center_horizontal"/>
However, if your width is match_parent, you will need to set gravity to center_horizontal
<TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="two\nlines" android:gravity="center_horizontal"/>
Hope this helps!
Shivam Oct 02 '17 at 7:50 2017-10-02 07:50
source share