我在LinearLayout中有一个TextView
,我想将它对齐在页面的中心,但它没有发生,我尝试了以下内容:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/userName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"
android:background="#80000000"
android:gravity="center"
android:padding="10dp"
android:text="User Name"
android:textColor="#FFFFFF"
android:textSize="12sp" />
</LinearLayout>
答案 0 :(得分:3)
将TextView layout_width更改为“match_parent”,问题是“gravity”仅适用于View的子节点,在这种情况下是“text”它自己,因此如果指定对象宽度只是为了包装其内容,这意味着没有空间可以居中,填满整个父母,使用“重力”中心就可以了。
你可以做的另一件事是将“android:gravity”属性更改为“android:layout_gravity”并将水平居中,这样你就可以告诉TextView本身移动到中心......
最佳做法总是尝试使用RelativeLayouts并避免使用LinearLayouts,它们提供了一种更好的方法来操作视图位置并且“设备大小碎片”是友好的,RelativeLayout有很多方法可以在最常见的位置上定位视图,包括center,top ,底部等...
希望这有助于。
问候!
答案 1 :(得分:1)
尝试更改布局。线性布局用于在行中显示ui组件。如果您想使用布局将文本视图居中,我建议将布局更改为相对布局。
答案 2 :(得分:0)
首先,您无法为LinearLayout设置属性android:layout_centerHorizontal =“true”。要使其居中,您需要将布局高度和宽度设置为match_parent,如下所示,
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/userName"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10dp"
android:background="#80000000"
android:gravity="center"
android:padding="10dp"
android:text="User Name"
android:textColor="#FFFFFF"
android:textSize="12sp" />
</LinearLayout>
答案 3 :(得分:-1)
尝试使用:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:gravity="center" >
<TextView
android:id="@+id/userName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="#80000000"
android:gravity="center"
android:padding="10dp"
android:text="User Name"
android:textColor="#FFFFFF"
android:textSize="12sp" />
</LinearLayout>