限制源编辑框的最大行数,滚动到其他输入框更容易,还有点问题,先改回

This commit is contained in:
kunfei 2022-09-27 23:30:26 +08:00
parent 9c7a109ae5
commit 79303b7b91
2 changed files with 2 additions and 3 deletions

View File

@ -36,7 +36,7 @@ open class ScrollMultiAutoCompleteTextView @JvmOverloads constructor(
override fun dispatchTouchEvent(event: MotionEvent): Boolean {
if (event.action == MotionEvent.ACTION_DOWN) {
//如果是新的按下事件则对mBottomFlag重新初始化
mBottomFlag = false
mBottomFlag = lineCount <= maxLines
}
return super.dispatchTouchEvent(event)
}

View File

@ -9,7 +9,6 @@
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:maxLines="12" />
android:inputType="textMultiLine" />
</io.legado.app.ui.widget.text.TextInputLayout>