将视图放在ConstraintLayout中的另一个视图下

时间:2017-06-22 18:39:32

标签: java android android-constraintlayout

如何将View放在View中的另一个ConstraintLayout后面?基本上我想实现这个目标:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<View
    android:id="@+id/view1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<View
    android:id="@+id/view2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</FrameLayout>

当view1位于Z轴的view2后面时。

3 个答案:

答案 0 :(得分:1)

此代码将一个视图置于另一个视图下方。

使用约束将视图约束到底部和顶部。 如果要让视图占据整个空间,请使用layout_height =“ 0dp”和layout_constraintHeight_default =“ spread”。

<android.support.constraint.ConstraintLayout 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">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:background="#F0F000"
        android:orientation="horizontal"
        app:layout_constraintHeight_default="spread"
        app:layout_constraintBottom_toTopOf="@+id/linearLayout"
        app:layout_constraintTop_toTopOf="parent"></LinearLayout>


    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"

        android:layout_height="180dp"
        android:background="#FF00FF"
        android:orientation="horizontal"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"></LinearLayout>
</android.support.constraint.ConstraintLayout>

enter code here

答案 1 :(得分:0)

只需尝试

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">

    <TextView
        android:id="@+id/view1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="VIEW 1"/>

    <TextView
        android:id="@+id/view2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="VIEW 2"
        app:layout_constraintTop_toTopOf="@+id/view1"
        app:layout_constraintStart_toStartOf="@+id/view1"
        app:layout_constraintEnd_toEndOf="@+id/view1"
        app:layout_constraintBottom_toBottomOf="@+id/view1"/>
</android.support.constraint.ConstraintLayout>

要引导ConstraintLayout的孩子,您可以使用大量app:layout_constraint...属性来实现您正在寻找的最佳布局。

这些layout_constraint中的所有4个都不是必需的,其中任何一个都可以完成。但只是为了向您展示您的选择。

答案 2 :(得分:0)

实际上与框架布局相同。 让我们一起看看:enter image description here

Xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        android:text="TextView1" />
    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/colorAccent"
        android:text="TextView2" />
</android.support.constraint.ConstraintLayout>

如果要在屏幕顶部看到textView1,则应将最新的内容放入xml中。喜欢: enter image description here 上图具有此xml布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/colorAccent"
        android:text="TextView2" />
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        android:text="TextView1" />
</android.support.constraint.ConstraintLayout>

如您所见,只有顺序被更改。我希望这会有所帮助。