当layout_constraint可见性的一个目标更改为View.GONE时,如何处理ConstraintLayout的以下情况

时间:2018-04-30 06:38:45

标签: android android-constraintlayout

我想避免嵌套布局,以提高我的应用性能。

因此,我尝试了以下

auto

输出如下。

enter image description here

在运行时,我可能会将<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_margin="30dp" 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"> <TextView android:id="@+id/title_text_view" android:background="#ffd600" android:layout_width="0dp" android:layout_height="wrap_content" android:text="Title\nTitle" app:layout_constraintEnd_toStartOf="@+id/pin_text_view" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/pin_text_view" android:background="#ff0000" android:textColor="#ffffff" android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="parent" android:text="Pin" /> <TextView android:id="@+id/body_text_view" android:background="#304ffe" android:textColor="#ffffff" android:layout_width="0dp" android:layout_height="0dp" app:layout_constraintTop_toBottomOf="@+id/title_text_view" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" android:text="Body" /> </android.support.constraint.ConstraintLayout> (黄色)的可见性更改为title_text_view

但是,它看起来像是跟随。我不希望View.GONE(红色)被pin_text_view覆盖(蓝色)

enter image description here

我希望拥有的是

enter image description here

要克服的一种方法是,在将body_text_view(黄色)的可见性更改为title_text_view后,我需要使用Java代码手动更新View.GONE app:layout_constraintTop_toBottomOf (蓝色) - Android : How to programatically set layout_constraintRight_toRightOf "parent"

body_text_view

<TextView
    android:id="@+id/body_text_view"
    ...
    app:layout_constraintTop_toBottomOf="@+id/title_text_view"

但是,这将使我的代码更难以维护。

有没有更简单的方法,不涉及Java代码,没有嵌套布局?

2 个答案:

答案 0 :(得分:1)

您可以使用屏障,自1.1版以来在ConstraintLayout中可用

因此,如果您使用的是旧版本的ConstraintLayout,请将build.gradle中ConstraintLayout的依赖项更改为

implementation 'com.android.support.constraint:constraint-layout:1.1.0'

或更高版本。

然后将屏障添加到您的布局中,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_margin="30dp"
    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">

    <TextView
        android:id="@+id/title_text_view"
        android:background="#ffd600"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Title\nTitle"
        app:layout_constraintEnd_toStartOf="@+id/pin_text_view"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/pin_text_view"
        android:background="#ff0000"
        android:textColor="#ffffff"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:text="Pin" />

    <android.support.constraint.Barrier
        android:id="@+id/barrier"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:barrierDirection="bottom"
        app:constraint_referenced_ids="title_text_view,pin_text_view" />

    <TextView
        android:id="@+id/body_text_view"
        android:background="#304ffe"
        android:textColor="#ffffff"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@+id/barrier"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:text="Body" />

</android.support.constraint.ConstraintLayout>

有关详细信息,请参阅此link

答案 1 :(得分:0)

您可以使用以下代码获得最接近您的要求,而无需添加任何额外代码:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_margin="30dp"
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">

<TextView
    android:id="@+id/title_text_view"
    android:background="#ffd600"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:text="Title\nTitle"
    android:visibility="visible"
    app:layout_constraintEnd_toStartOf="@+id/pin_text_view"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<TextView
    android:id="@+id/pin_text_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginEnd="8dp"
    android:background="#ff0000"
    android:text="Pin"
    android:textColor="#ffffff"
    app:layout_constraintEnd_toEndOf="@+id/body_text_view" />

<TextView
    android:id="@+id/body_text_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginTop="8dp"
    android:background="#304ffe"
    android:text="Body"
    android:textColor="#ffffff"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/pin_text_view" />

OR 如果您想要执行一些额外的xml代码,可以使用guidelines中的constraintLayout功能执行此类操作:

<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"
android:layout_margin="30dp">

<TextView
    android:id="@+id/title_text_view"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginBottom="8dp"
    android:background="#ffd600"
    android:padding="5dp"
    android:text="Title\nTitle"
    android:visibility="visible"
    app:layout_constraintBottom_toTopOf="@+id/guideline"
    app:layout_constraintEnd_toStartOf="@+id/pin_text_view"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<android.support.constraint.Guideline
    android:id="@+id/guideline"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    app:layout_constraintGuide_percent="0.09" />

<TextView
    android:id="@+id/pin_text_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginEnd="8dp"
    android:background="#ff0000"
    android:text="Pin"
    android:textColor="#ffffff"
    app:layout_constraintEnd_toEndOf="@+id/body_text_view" />

<TextView
    android:id="@+id/body_text_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginTop="8dp"
    android:background="#304ffe"
    android:text="Body"
    android:textColor="#ffffff"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="@+id/guideline" />

   </android.support.constraint.ConstraintLayout>