是否可以将TextInputLayout中的EditText提示设置为多行? 这是我的布局。
<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>
这是我提示的字符串资源。
<string name="hint1">
A quick brown fox jumps \n over the lazy dog
</string>