Горизонтальный центр TextView в RelativeLayout
на экране моего приложения я хочу показать заголовок как горизонтальный центр. Я пробовал С ниже макета xml-кодов
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginTop="10dip"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="Connections" />
</RelativeLayout>
спасибо
6 ответов:
android:gravity
управляет внешним видом в TextView. Поэтому, если бы у вас было две строки текста, они были бы центрированы в пределах TextView. Попробуйandroid:layout_centerHorizontal="true"
.
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginTop="10dip" > <TextView android:layout_centerHorizontal="true" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center" android:text="Connections" /> </RelativeLayout>
использовать
layout_centerInParent="true"(layout_centerInHorizontal,layout_centerInVertical)
гравитация означает алгин текста на textview, а не сам вид
заменить textview С ниже кода
<TextView android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center_horizontal" android:text="Connections" />
только добавить этот
android:gravity="center_horizontal"
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_marginTop="10dip" android:gravity="center_horizontal" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center_horizontal" android:text="Connections" /> </RelativeLayout>