相对布局:将视图的水平和垂直中心与其他视图对齐

时间:2018-11-07 01:29:54

标签: android android-linearlayout vertical-alignment android-constraintlayout android-relativelayout

我要如下创建布局 enter image description here  点与上面的文本居中对齐的位置。在两个点之间存在一条线

我已经尝试过

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical"
    android:gravity="center_horizontal">

    <LinearLayout android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Place Order" />

        <TextView android:text="Go to Collect"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <TextView android:text="Collect Order"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>

    <LinearLayout android:orientation="horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">

        <ImageView android:src="@drawable/dot_one"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ImageView android:src="@drawable/line_one"
            android:layout_gravity="center_vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ImageView android:src="@drawable/dot_two"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <ImageView android:src="@drawable/line_two"
            android:layout_gravity="center_vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
        <ImageView android:src="@drawable/dot_three"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

这使点开始与文本开始完全相同,并且不居中对齐 enter image description here

我想使圆点的中心与文本对齐。与RelativeLayout尝试相同。但是我再次面临着同样的问题

2 个答案:

答案 0 :(得分:1)

最好的方法是使用ConstraintLayout

将其添加到您的应用模块依赖项中:

dependencies {
    [...]
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
}

然后创建例如文本部件元素的LinearLayout的权重均为1。 然后,对于下部,使用ContraintLayout,其Guidelines分别为33%和66%,并使用约束将点之间的线放置。然后,您的代码应如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="Place Order" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="Go to Collect" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="Collect Order" />
</LinearLayout>

<android.support.constraint.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <android.support.constraint.Guideline
        android:id="@+id/guideline33"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.33" />

    <android.support.constraint.Guideline
        android:id="@+id/guideline66"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.66" />

    <ImageView
        android:id="@+id/dot1"
        android:layout_width="10dp"
        android:layout_height="10dp"
        android:src="@drawable/circle_orange"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="@+id/guideline33" />

    <ImageView
        android:id="@+id/dot2"
        android:layout_width="10dp"
        android:layout_height="10dp"
        android:src="@drawable/circle_orange"
        app:layout_constraintLeft_toLeftOf="@+id/guideline33"
        app:layout_constraintRight_toRightOf="@+id/guideline66" />

    <ImageView
        android:id="@+id/dot3"
        android:layout_width="10dp"
        android:layout_height="10dp"
        android:src="@drawable/circle_orange"
        app:layout_constraintLeft_toLeftOf="@+id/guideline66"
        app:layout_constraintRight_toRightOf="parent" />

    <ImageView
        android:layout_width="0dp"
        android:layout_height="4dp"
        android:layout_marginStart="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginEnd="10dp"
        android:layout_marginRight="10dp"
        android:src="@drawable/square_orange"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toRightOf="@id/dot1"
        app:layout_constraintRight_toLeftOf="@id/dot2"
        app:layout_constraintTop_toTopOf="parent" />

    <ImageView
        android:layout_width="0dp"
        android:layout_height="4dp"
        android:layout_marginStart="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginEnd="10dp"
        android:layout_marginRight="10dp"
        android:src="@drawable/square_orange"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toRightOf="@id/dot2"
        app:layout_constraintRight_toLeftOf="@id/dot3"
        app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

点和正方形是形状可绘制对象:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#FF9800" />
</shape>

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">
    <solid android:color="@color/hek_orange" />
</shape>

这给你这个:

enter image description here

您可以自行决定使用边距来在顶部和下部以及点和线之间创建足够的空间。

答案 1 :(得分:0)

您应该使用ConstraintLayout。在ConstraintLayout中,将点指定为

constraint_leftToLeftOf = R.id.text
constraint_rightToRightOf = R.id.text

然后将其与文本的中心对齐。

ConstraintLayout: https://developer.android.com/training/constraint-layout/