在RelativeLayout中居中文本和图像

时间:2018-03-07 15:30:35

标签: android android-layout android-relativelayout

我带着一个看似简单的问题来找你。然而,我无法找到合适的解决方案。 我在LinearLayout内的RelativeLayout中有一个Image-和TextView。

<LinearLayout
    android:id="@+id/page2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorPrimary"
    android:orientation="horizontal"
    android:weightSum="2"
    android:baselineAligned="false"
    android:divider="@drawable/separator_vertical"
    android:showDividers="middle">

    <RelativeLayout
        android:id="@+id/delete_button"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1">


        <TextView
            android:id="@+id/delete_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="DemoText"
            android:textColor="#fff"
            android:textSize="15sp" />

        <ImageView

            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginEnd="10dp"
            android:layout_toStartOf="@id/delete_text"
            android:src="@drawable/ic_delete" />

    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/edit_button"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1">

        <TextView
            android:id="@+id/edit_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="DemoText"
            android:textColor="#fff"
            android:textSize="15sp" />

        <ImageView

            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginEnd="10dp"
            android:layout_toStartOf="@id/edit_text"
            android:src="@drawable/ic_edit" />

    </RelativeLayout>


</LinearLayout>

enter image description here

目前只有TextView以其各自的RelativeLayout为中心。 如何将ImageView和TextView在RelativeLayout的中心对齐?

3 个答案:

答案 0 :(得分:1)

设置

android:gravity="center"

父亲relativeLayouts有权重

这样它就像你想要的那样将孩子们集中在一起!!

答案 1 :(得分:0)

您可以将两个视图包装在另一个布局中并居中。例如:

<RelativeLayout
    android:id="@+id/delete_button"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:gravity="center">

        <ImageView
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_marginEnd="10dp"
            android:src="@drawable/ic_delete" />

        <TextView
            android:id="@+id/delete_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="DemoText"
            android:textColor="#fff"
            android:textSize="15sp" />

    </LinearLayout>

</RelativeLayout>

答案 2 :(得分:0)

LinearLayout具有不同的特性,你需要的是内部的ConstraintLayout和LinearLayout。当然你可以用其他东西包装RelativeLayout,但它是不必要的嵌套:

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/page2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimary"
android:baselineAligned="false"
android:orientation="horizontal"
android:showDividers="middle"
android:weightSum="2">

<LinearLayout
    android:orientation="horizontal"
    android:id="@+id/delete_button"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toStartOf="@id/guideline">


    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="10dp"
        android:layout_toStartOf="@id/delete_text"
        android:src="@drawable/delete_text" />

    <TextView
        android:id="@+id/delete_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="DemoText"
        android:textColor="#fff"
        android:textSize="15sp" />
</LinearLayout>

<LinearLayout
    android:orientation="horizontal"
    android:id="@+id/edit_button"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    app:layout_constraintHorizontal_bias="0.5"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toEndOf="@id/guideline">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="10dp"
        android:layout_toStartOf="@id/edit_text"
        android:src="@drawable/edit_text" />

    <TextView
        android:id="@+id/edit_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="DemoText"
        android:textColor="#fff"
        android:textSize="15sp" />

</LinearLayout>

<android.support.constraint.Guideline
    android:id="@+id/guideline"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentEnd="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:orientation="vertical"
    app:layout_constraintGuide_percent="0.5" />

</android.support.constraint.ConstraintLayout>