Предотвратить однострочные эллипсы TextView, ограниченные меткой в ​​макете ограничения - PullRequest
0 голосов
/ 06 марта 2020

У меня есть два TextView, которые выровнены по вертикали с верхним TextView, действующим как метка для нижнего TextView. Мы можем назвать их testLabel и testText. Чтобы выровнять их по левому краю, testText имеет ограничение start -> startOf для testLabel. Эти TextViews расположены в правом верхнем углу родительского элемента. testLabel имеет ограничение end -> endOf для родителя со значением поля. Проблема заключается в том, что длина метки может варьироваться, и когда длина метки является достаточно малым значением, метка должным образом обновит свою позицию на основе параметра поля и ограничения с родительским элементом, но это также приведет к выравниванию текста в начале. приводит к тому, что текст исчезает с экрана, показывая многоточия, если текст достаточно длинный. Я могу сказать, что длина текста Перри очень постоянна. Я создал простое занятие для иллюстрации проблемы. Вот случай, когда метка не достаточно мала, и все выглядит хорошо: enter image description here Когда метка достаточно мала: enter image description here

Вот xml:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/testLabel"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:layout_marginEnd="32dp"
        android:layout_marginRight="32dp"
        android:text="@android:string/ok"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/testText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="6dp"
        android:layout_marginRight="6dp"
        android:gravity="start"
        android:singleLine="true"
        android:text="MonkeyBars"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@id/testLabel"
        app:layout_constraintTop_toBottomOf="@id/testLabel" />

</androidx.constraintlayout.widget.ConstraintLayout>

То, что я хотел бы сделать, - это ограничение, понимающее, что текст будет переполнен и вместо этого будет заполнять поле только до такой степени, что текст не переполняется. Я уверен, что могу кое-что сделать программно, но надеюсь, что это то, что я могу реализовать в макете.

Ответы [ 3 ]

0 голосов
/ 06 марта 2020

Почему бы не ограничить запуск TextView сверху для запуска TextView снизу?

<TextView
        android:id="@+id/testLabel"
        app:layout_constraintStart_toStartOf="@+id/testText"
        ... />

Вот полный код:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/testLabel"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:layout_marginEnd="32dp"
        android:text="@android:string/ok"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="@+id/testText"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/testText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="6dp"
        android:gravity="start"
        android:singleLine="true"
        android:text="MonkeyBars"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toBottomOf="@id/testLabel" />

</androidx.constraintlayout.widget.ConstraintLayout>

0 голосов
/ 06 марта 2020

Если вы хотите, чтобы оба вида текста были выровнены по левому краю, а длина метки может варьироваться, попробуйте это

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/testLabel"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginTop="24dp"
        android:layout_marginEnd="32dp"
        android:layout_marginRight="32dp"
        android:text="@android:string/ok"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/testText"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:gravity="start"
        android:singleLine="true"
        android:text="MonkeyBars"
        app:layout_constraintEnd_toEndOf="@id/testLabel"
        app:layout_constraintTop_toBottomOf="@id/testLabel" />
0 голосов
/ 06 марта 2020

Удалить эту строку из testText TextView:

app:layout_constraintStart_toStartOf="@id/testLabel"

и добавить эту строку в textLabel TextView:

app:layout_constraintStart_toStartOf="@id/testText"

Hope it будет работать как хочешь.

...