如何在中心LinearLayout上找到TextView?

时间:2015-06-05 08:36:44

标签: android android-layout

我正在尝试在中心(垂直,水平)LinearLayout上找到TextView,但它不起作用。我只能水平定位中心或垂直居中,但我需要水平定位中心并垂直居中。 你能解释我怎么能这样做吗?

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true">

    <LinearLayout
        android:id="@+id/sigpanel"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@+id/button_panel"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp"
        android:layout_alignParentStart="true"
        android:baselineAligned="false"
        android:background="@drawable/customborder"
        android:orientation="vertical">

        <TextView
            android:id="@+id/tv_Signature"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Signature"
            android:layout_gravity="center"
            android:textColor="#002060" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/button_panel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true">

        <Button
            android:id="@+id/button_next"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="15dip"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dip"
            android:layout_weight="1"
            android:background="@drawable/gradient_green"
            android:drawableLeft="@drawable/ic_next"
            android:gravity="center"
            android:shadowColor="#014927"
            android:shadowDx="0.0"
            android:shadowDy="0.0"
            android:shadowRadius="2.5"
            android:text="Next"
            android:textColor="#001B51"
            android:textSize="20sp"
            android:textStyle="bold" />

        <Button
            android:id="@+id/button_cancel"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginBottom="15dip"
            android:layout_marginRight="10dip"
            android:layout_weight="1"
            android:background="@drawable/gradient_red"
            android:drawableLeft="@drawable/ic_cancel"
            android:gravity="center"
            android:shadowColor="#014927"
            android:shadowDx="0.0"
            android:shadowDy="0.0"
            android:shadowRadius="2.5"
            android:text="Clear"
            android:textColor="#001B51"
            android:textSize="20sp"
            android:textStyle="bold" />
    </LinearLayout>

</RelativeLayout>

2 个答案:

答案 0 :(得分:3)

LinearLayout的{​​{1}}中添加重力中心 center_vertical | clip_horizo​​ntal ,如下所示:

TextView

OR

android:gravity="center"

示例:

android:gravity="center_vertical|clip_horizontal"

答案 1 :(得分:-1)

嘿使用线性的相对布局或尝试这个

        android:id="@+id/tv_Signature"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Signature"
        android:gravity="center"
        android:textColor="#002060"