在RelativeLayout中的TextView水平中心

在我的应用程序屏幕上,我想显示标题为水平居中。 我尝试使用下面的布局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> 

谢谢

android:gravity控制TextView中的外观。 所以如果你有两行文本,它们将会在TextView的边界内居中。 试试android:layout_centerHorizontal="true"

用这个:

 android:layout_centerHorizontal="true" 

在TextView中

 <?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上的文本的algin,而不是视图本身

用下面的代码replacetextview

 <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>