Как сделать подсказку Textinputlayout многострочным? - PullRequest
0 голосов
/ 28 января 2020

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

<com.google.android.material.textfield.TextInputLayout
    android:id="@+id/tilFieldLabel"
    style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    app:hintTextAppearance="@style/AddApplicationTextLabel">

    <utilities.customcontrols.BodyEditText
        android:id="@+id/etValue"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:autoLink="web"
        android:gravity="start"
        android:inputType="textMultiLine"
        android:maxLength="1000"
        android:textColor="@color/black"
        android:textSize="@dimen/_13ssp"
        android:theme="@style/AddApplicationEditTextField"
        custom:customfont="bold" />


</com.google.android.material.textfield.TextInputLayout>
...