如何将一个视图放置在另一个视图的顶部,并使两个视图的中心按约束布局对齐?

时间:2019-05-20 17:28:02

标签: android android-constraintlayout

布局:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <View
        android:id="@+id/view1"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_margin="16dp"
        android:background="@android:color/holo_red_dark"
        app:layout_constraintBottom_toTopOf="@id/view1"
        app:layout_constraintEnd_toEndOf="parent" />

    <View
        android:id="@+id/view2"
        android:layout_width="160dp"
        android:layout_height="160dp"
        android:layout_marginEnd="64dp"
        android:layout_marginBottom="256dp"
        android:background="@android:color/holo_blue_bright"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

截屏:

enter image description here

如何以使两个视图的中心垂直对齐的方式将第一个视图(红色框)准确放置在第二个视图(蓝色框)的顶部。

预期的布局:(中心应对齐)(在屏幕截图中未对齐)

enter image description here

2 个答案:

答案 0 :(得分:1)

一个简单的解决方案是将view1相对于view2对齐。因此view2将具有某种绝对位置,然后view1将相对于view2对齐。

这将是view1的约束条件:

app:layout_constraintBottom_toTopOf="@id/view2"
app:layout_constraintEnd_toEndOf="@id/view2"
app:layout_constraintStart_toStartOf="@id/view2"

然后布局应为:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <View
        android:id="@+id/view1"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_margin="16dp"
        android:background="@android:color/holo_red_dark"
        app:layout_constraintBottom_toTopOf="@id/view2"
        app:layout_constraintEnd_toEndOf="@id/view2"
        app:layout_constraintStart_toStartOf="@id/view2"/>

    <View
        android:id="@+id/view2"
        android:layout_width="160dp"
        android:layout_height="160dp"
        android:layout_marginEnd="64dp"
        android:layout_marginBottom="256dp"
        android:background="@android:color/holo_blue_bright"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

另一个解决方案可能是使用chain属性,您可以在docs

中看到更多信息

答案 1 :(得分:0)

喜欢吗?

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout   xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

<View
    android:id="@+id/view2"
    android:layout_width="160dp"
    android:layout_height="160dp"
    android:background="@android:color/holo_blue_bright"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />


<View
    android:id="@+id/view1"
    android:layout_width="64dp"
    android:layout_height="64dp"
    android:background="@android:color/holo_red_dark"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />


</androidx.constraintlayout.widget.ConstraintLayout>

如果您希望能够移动蓝色框,请将红色框更改为此:

  <View
        android:id="@+id/view1"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:background="@android:color/holo_red_dark"
        app:layout_constraintBottom_toBottomOf="@+id/view2"
        app:layout_constraintEnd_toEndOf="@+id/view2"
        app:layout_constraintStart_toStartOf="@id/view2"
        app:layout_constraintTop_toTopOf="@id/view2" />