gpt4 book ai didi

android - 如何在 TextView 中启用 'fling scrolling'

转载 作者:行者123 更新时间:2023-11-29 14:18:01 25 4
gpt4 key购买 nike

我的 TextView 仅在手指与屏幕接触时滚动,并且仅滚动手指移动的距离。如何在 TextView 中启用快速滚动?

 <TextView
android:id="@+id/helloWorld"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world"
tools:context=".HelloWorld"
android:scrollbars="horizontal|vertical"
android:scrollbarSize="@dimen/scrollBarSize"
android:scrollbarFadeDuration="2000"/>

我在这里找到了一些示例代码: Vertical fling scrolling of text line in Android请告诉我有更好的方法来做到这一点!

最佳答案

在这里你不想使用 ScrollView

只需在 xml 文件中使用以下行

android:maxLines = "AN_INTEGER"

android:scrollbars = "vertical"

布局 xml 文件中 TextView 的属性。

然后使用:

yourTextView.setMovementMethod(new ScrollingMovementMethod())

在您的 Java 代码中。

关于android - 如何在 TextView 中启用 'fling scrolling',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17769127/

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