Программно изменить ограничения в расположении ячейки по центру - Android - PullRequest
0 голосов
/ 10 апреля 2020

У меня есть макет, который использует ConstraintLayout внутри ячейки. Когда условие выполнено, я установил видимость для двух из трех представлений. После этого я пытаюсь сбросить ограничения для представлений, чтобы единственное видимое представление могло быть отцентрировано. Однако вид центрируется горизонтально, а не в центре вида. Ниже вы можете найти мой макет и мой код для сброса ограничений.

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView 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:id="@+id/card_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:cardBackgroundColor="@color/blue">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:id="@+id/constraint_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <ImageView
            android:id="@+id/image"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:scaleType="centerCrop"
            app:layout_constraintDimensionRatio="H,1:1"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <TextView
            android:id="@+id/text_one"
            android:textColor="@color/white_100"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/image"/>

        <TextView
            android:id="@+id/text_two"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/text_one"/>

    </androidx.constraintlayout.widget.ConstraintLayout>

</androidx.cardview.widget.CardView>

private fun centerText(holder: ViewHolder) {
        holder.image = View.GONE
        holder.text_two = View.GONE
        val set = ConstraintSet()
        set.clear(holder.image.id)
        set.clear(holder.text_one.id)
        set.clear(holder.text_two.id)
        set.applyTo(holder.constraintLayout)
        set.constrainHeight(holder.text_one.id,
                ConstraintSet.WRAP_CONTENT)
        set.constrainWidth(holder.text_one.id,
                ConstraintSet.WRAP_CONTENT)
        set.connect(holder.text_one.id, ConstraintSet.LEFT,
                ConstraintSet.PARENT_ID, ConstraintSet.LEFT, 0)
        set.connect(holder.text_one.id, ConstraintSet.RIGHT,
                ConstraintSet.PARENT_ID, ConstraintSet.RIGHT, 0)
        set.connect(holder.text_one.id, ConstraintSet.TOP,
                ConstraintSet.PARENT_ID, ConstraintSet.TOP, 0)
        set.connect(holder.text_one.id, ConstraintSet.BOTTOM,
                ConstraintSet.PARENT_ID, ConstraintSet.BOTTOM, 0)
        set.applyTo(holder.constraintLayout) 
    }

enter image description here

1 Ответ

0 голосов
/ 10 апреля 2020

изменить видимость изображения и text_two с исчезнувшего на невидимое. Потому что высота вашего родительского макета wrap_content.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...