我需要ellipsize
从提示文本中删除(三个点)并希望显示完整的文本。我正在使用 TextInputLayout 小部件。
添加ellipsize
属性TextInputEditText
不起作用。
下面是 TextInputLayout 小部件的代码
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
style="@style/TextLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include
android:id="@+id/layout_header"
layout="@layout/text_header" />
<com.google.android.material.textfield.TextInputLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/hint"
style="@style/TextLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="fields"
android:padding="@dimen/padding_normal"
app:boxBackgroundColor="@color/white">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/edit_text"
android:singleLine="false"
android:ellipsize="none"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.google.android.material.textfield.TextInputLayout>
</LinearLayout>