gpt4 book ai didi

android - 将属性从约束布局中的一个 View 隐藏到另一个 View

转载 作者:行者123 更新时间:2023-12-04 10:57:10 26 4
gpt4 key购买 nike

我是使用 ConstraintLayout 的初学者

我有一个用例,当一个 TextView 在约束布局中消失时,我想将另一个 TextView 放置到与现在隐藏的 TextView 完全相同的位置。在 xml 中很容易,是否有可能以编程方式实现相同的目的?

这是更改前的布局 xml:

<?xml version="1.0" encoding="utf-8"?>
<merge 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"
tools:ignore="ContentDescription">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true">

<TextView
android:id="@+id/some_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:layout_marginTop="20dp"
android:ellipsize="end"
android:maxLines="2"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toTopOf="@+id/textView1"
app:layout_constraintEnd_toStartOf="@+id/textView2"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="SOME TITLE" />

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@color/stone"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/textView2"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/some_title"
tools:text="I WILL BE HIDDEN" />

<TextView
android:id="@+id/textView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:ellipsize="end"
android:enabled="false"
android:maxLines="2"
android:maxWidth="88dp"
android:gravity="end"
android:paddingTop="32dp"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:text="I WILL CHANGE THE POSITION"
tools:textColor="@color/green" />

</androidx.constraintlayout.widget.ConstraintLayout>

</merge>

下面是它应该如何处理更改:

<?xml version="1.0" encoding="utf-8"?>
<merge 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"
tools:ignore="ContentDescription">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/card_container"
android:clickable="true"
android:focusable="true">

<TextView
android:id="@+id/someTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:layout_marginTop="20dp"
android:ellipsize="end"
android:maxLines="2"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toTopOf="@+id/textView2"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="SOME TITLE" />

<TextView
android:id="@+id/textView1"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@color/stone"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/textView1"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/someTitle"
tools:text="I AM HIDDEN NOW" />

<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@color/stone"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/someTitle"
tools:text="I SHOULD REPLACED THE TEXTVIEW1 POSITION!"
tools:textColor="@color/green" />

</androidx.constraintlayout.widget.ConstraintLayout>

</merge>

因此,如您所见,我只是将所有定位值从“textView1”复制到“textView2”(对“someTitle”进行了一些调整)我怎样才能以编程方式做到这一点?

最佳答案

我只是提出了我自己的解决方案,因为其他解决方案都没有完全涵盖我的用例。所以我刚刚介绍了一个屏障https://developer.android.com/reference/android/support/constraint/Barrier将底部引用从底部 some_title TextView 保存到其他 TextView 的顶部。在这种情况下,在布局 xml 中进行了调整:

 <androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/card_container"
android:clickable="true"
android:focusable="true">

<TextView
android:id="@+id/someTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:layout_marginTop="20dp"
android:ellipsize="end"
android:maxLines="2"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toTopOf="@+id/bottomAreaBarrier"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:text="SOME TITLE" />

<androidx.constraintlayout.widget.Barrier
android:id="@+id/bottomAreaBarrier"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:barrierDirection="top"
app:constraint_referenced_ids="textView1,textView2" />

<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="16dp"
android:ellipsize="end"
android:maxLines="1"
android:textColor="@color/stone"
app:layout_constrainedWidth="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintStart_toStartOf="parent"
tools:text="TEXTVIEW TO BE REPLACED SOMETIMES" />

<TextView
android:id="@+id/textView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:ellipsize="end"
android:enabled="false"
android:maxLines="2"
android:maxWidth="88dp"
android:gravity="end"
app:layout_constrainedWidth="true"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:text="I WILL CHANGE POSITION FOR TEXTVIEW1 SOMETIMES"
tools:textColor="@color/green" />

</androidx.constraintlayout.widget.ConstraintLayout>

在这种情况下,只要是这种情况,我就可以简单地更改 textView2 的重力:

  if (textView1.text.isEmpty()) {
textView2.gravity = Gravity.START
} else {
textView2.gravity = Gravity.END
}

关于android - 将属性从约束布局中的一个 View 隐藏到另一个 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59103623/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com