0

我有TextView一个 LinearLayout 内部,我想将它对齐在页面的中心,但它没有发生,我尝试了以下方法:

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

4 回答 4

3

将 TextView layout_width 更改为“match_parent”,问题是“gravity”仅适用于 View 的子级,在这种情况下,它本身就是“文本”,因此如果您指定对象宽度只是为了包装其内容,这意味着没有空间可以居中,填充整个父母并使用“重力”中心就可以了。

您可以做的另一件事是将“android:gravity”属性更改为“android:layout_gravity”并水平居中,这样您就可以告诉TextView本身移动到中心......

作为最佳实践总是尝试使用RelativeLayouts并避免使用LinearLayouts,它们提供了一种更好的方式来操作视图位置并且对“设备大小碎片”友好,RelativeLayout有很多方法可以将视图定位在最常见的位置,包括中心、顶部、底部等...

希望这可以帮助。

问候!

于 2013-10-01T23:15:57.583 回答
1

尝试更改布局。线性布局用于在行中显示 ui 组件。如果您想使用您的布局将您的 textview 居中,我建议将布局更改为Relative Layout

于 2013-10-02T00:25:07.627 回答
0

首先,您不能为 LinearLayout 设置属性 android:layout_centerHorizo​​ntal="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>
于 2013-10-28T11:24:33.467 回答
-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>
于 2013-10-02T04:01:53.070 回答