Как центрировать вид или его содержимое, например, TextView или кнопка
горизонтально и вертикально? layout_gravity может использоваться для позиционирования
вид в центре своего родителя. В то время как атрибут гравитации используется для
содержимое просмотра позиции, например «Текст» в центре вида.
(1) Центр TextView по горизонтали
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="10dp"
tools:context=".MainActivity" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_gravity="center"
android:background="#333"
android:textColor="#fff"
/>
</LinearLayout>
(2) Центр TextView по вертикали
android: layout_gravity = "center_vertical", доза не работает !!
Чтобы отцентрировать TextView по вертикали, нужно сделать трюк. Поместите TextView в RelativeLayout, затем установите атрибут TextView android: layout_centerInParent = ”true”
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_margin="10dp"
tools:context=".MainActivity" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_centerInParent="true"
android:layout_gravity="center_vertical"
android:gravity="center"
android:background="#333"
android:textColor="#fff"
/>
</RelativeLayout>
(3) Центр текста по горизонтали
андроид: гравитация =»center_horizontal"
(4) Центрировать текст по горизонтали и вертикали
android: gravity = ”center”, текст будет располагаться по горизонтали и
вертикально * * 1 047
<TextView
android:layout_width="fill_parent"
android:layout_height="100dp"
android:text="Hello World!"
android:gravity="center"
android:background="#333"
android:textColor="#fff"
/>