问题描述

使用EditText展示(也可编辑)多行文本时,上下滑动,感觉不流畅,不带惯性.

解决方案

使用ScrollView包裹EditText.

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:fillViewport="true">

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@null"
android:gravity="top"
android:inputType="textMultiLine" />

</ScrollView>