gpt4 book ai didi

android - TextView 中的惯性滚动

转载 作者:行者123 更新时间:2023-12-03 17:57:02 26 4
gpt4 key购买 nike

我有一个完整的已解析 HTML 的 TextView,并且内容比手机屏幕长,所以我启用了滚动使用

tv1.setMovementMethod(new ScrollingMovementMethod());

这可行,但它只能用手指直接滚动。是否可以进行惯性滚动,就像在网络浏览器、联系人或基本上任何其他应用程序中一样?我已经搜索和搜索,并且无法确定 TextView 是否可以进行惯性滚动。

最佳答案

<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<TextView
android:textColor="@color/textColor"
android:id="@+id/description"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="20dp"

android:layout_marginTop="8dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="16dp"
android:fontFamily="@font/merriweather_light"
android:text=""
android:textSize="20dp">


</TextView>
</ScrollView>
这对我有用。只需将其放在 ScrollView block 内

关于android - TextView 中的惯性滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9945649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com