Можно сделать эллиптический текстовый вид без настроек maxLine?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ellipsize="end"
android:layout_above="@id/bottom"
android:text="@string/sample_text"
android:textSize="18sp"/>
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="450dp"
android:layout_alignParentBottom="true"
android:background="@android:color/holo_orange_dark"/>
</RelativeLayout>
Как я могу сделать эллиптический размер этого текстового представления без установки максимальной линии, поскольку «оранжевый» вид снизу имеет динамический размер?
ОБНОВЛЕНИЕ:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_above="@id/bottom"
android:ellipsize="end"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@id/bottom"
android:text="@string/sample_text"
android:textSize="18sp"/>
<View
android:id="@+id/bottom"
android:layout_width="match_parent"
android:layout_height="450dp"
android:layout_alignParentBottom="true"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@android:color/holo_orange_dark"/>
</android.support.constraint.ConstraintLayout>
Я также попробовал этот подход, но он тоже не сработал.