安卓解决EditText滑动不畅的问题

2020-10-13  本文已影响0人  蓝不蓝编程

问题描述

使用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>
上一篇下一篇

猜你喜欢

热点阅读