Макет ограничения: кнопка перекрытия текста Textview

#android #android-layout #android-constraintlayout

#Android #android-макет #android-constraintlayout

Вопрос:

Я впервые сталкиваюсь с этой проблемой, мой текст перекрывает кнопку, я пытался использовать барьер, рекомендации, но получаю текст в центре кнопки и запускаю родительский элемент. Я добиваюсь, чтобы текст TextViews начинался с родительского элемента и заканчивался кнопкой before, а кнопка всегда оставалась в конце родительского элемента, как показано на рисунке ниже.
введите описание изображения здесь

Мой макет.

  <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <TextView
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:id="@ id/titleTextView"
            android:text="title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    <TextView
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@ id/titleTextView"
            android:id="@ id/descriptionTextView"
            android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    <ImageView
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:id="@ id/copyImageView"
            android:tint="?android:textColorSecondary"
            android:src="@drawable/ic_content_copy_black_24dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>
  

Ответ №1:

Вы должны установить ширину равной 0dp, что означает match_constraint, а также ограничить ее конец началом ImageView

 <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <TextView
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            android:id="@ id/titleTextView"
            android:text="title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
    <TextView
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@ id/titleTextView"
            android:id="@ id/descriptionTextView"
            android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
            app:layout_constraintEnd_toStartOf="@id/copyImageView"
            android:layout_width="0dp"
            android:layout_height="0dp"/>
    <ImageView
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:id="@ id/copyImageView"
            android:tint="?android:textColorSecondary"
            android:src="@drawable/ic_content_copy_black_24dp"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>
</androidx.constraintlayout.widget.ConstraintLayout>
  

Комментарии:

1. идеальный ответ.

Ответ №2:

Все, что вам нужно, это всего лишь небольшое поле и правое ограничение

теперь в descriptionTextView первом случае вам нужно установить app:layout_constrainedWidth="true" , чтобы это не выходило за рамки макета, и установить некоторое поле с правой стороны, например android:layout_marginEnd="8dp"

теперь вам нужно установить ограничение с помощью ImageView вот так

app:layout_constraintEnd_toStartOf="@ id/copyImageView"

теперь строка выше всегда будет препятствовать перекрытию вашего текстового представления

 <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <TextView
        android:id="@ id/titleTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="title"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@ id/descriptionTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="8dp"
        android:layout_marginRight="8dp"
        android:text="Lorem ipsum dolor sit amet, consectetur erererereradipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
        app:layout_constrainedWidth="true"
        app:layout_constraintEnd_toStartOf="@ id/copyImageView"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@ id/titleTextView" />

    <ImageView
        android:id="@ id/copyImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_content_copy_black_24dp"
        android:tint="?android:textColorSecondary"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.050000012" />

</androidx.constraintlayout.widget.ConstraintLayout>
  

Комментарии:

1. Это тоже хорошее решение, но решение mr. svkaka простое. Спасибо за ваш ответ.

2. приложение: layout_constrainedWidth =»true» — это то, что я ищу. Спасибо

Ответ №3:

Вы можете добавить значок в конец TextView, добавив возможность рисования справа / в конце. Используйте приведенный ниже код, чтобы добавить возможность рисования в TextView. Вы также можете установить отступы для рисования, чтобы освободить пространство между объектом рисования и текстом.

android:drawableRight="@drawable/search_icon"

Комментарии:

1. Это кажется хорошим решением, но я буду придерживаться ограничений.

Ответ №4:

У меня похожая проблема, с которой я столкнулся в приведенном ниже коде

 <androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    
    <androidx.appcompat.widget.AppCompatTextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:ellipsize="end"
        android:gravity="center"
        android:maxLines="1"
        android:text="tetetetetetetetetetetetetetetetetetetete"
        app:layout_constraintEnd_toStartOf="@ id/tvWriteReview"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <androidx.appcompat.widget.AppCompatTextView
        android:id="@ id/tvWriteReview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:ellipsize="end"
        android:gravity="center"
        android:maxLines="1"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>