错误的例子:
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/transparent"
android:hint="搜索"
android:imeOptions="actionSearch"
android:maxLines="1"
android:textSize="14sp" />
正确的例子:
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/transparent"
android:hint="搜索"
android:imeOptions="actionSearch"
android:singleLine="true"
android:textSize="14sp" />
即使Android要求了用maxLines="1"来代替android:singleLine="true",不过似乎达不到效果