是否可以在不设置maxLine的情况下省略textView的大小?
<?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>
由于底部的“橙色”视图具有动态大小,如何在不设置maxline的情况下椭圆化此TextView?
<?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>
我也尝试过这种方法,也没有用。
答案 0 :(得分:1)
将以下行添加到textview xml代码中
android:ellipsize="end"
答案 1 :(得分:0)
尝试添加android:ellipsize="end"