Is it possible to set an allusion to EditText in TextInputLayout to multi-line? Here is my layout.
<android.support.design.widget.TextInputLayout
android:id="@+id/f1q3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/f1q2"
android:layout_marginTop="15dp"
app:hintTextAppearance="@style/TextLabel">
<EditText
android:id="@+id/f1q3_value"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint= "@string/hint1"
/>
</android.support.design.widget.TextInputLayout>
And here is my string resource for clues.
<string name="hint1">
A quick brown fox jumps \n over the lazy dog
</string>
source
share