有没有办法防止 ScrollView 在 TextView 获得焦点时自动滚动?

Posted

技术标签:

【中文标题】有没有办法防止 ScrollView 在 TextView 获得焦点时自动滚动?【英文标题】:There is no way to prevent ScrollView from automatically scrolling when TextView is focused? 【发布时间】:2021-09-08 13:42:54 【问题描述】:

如果我第一次单击 text2 或单击 text1 后单击 text2 时,ScrollView 似乎正在将 text2 滚动到顶部。如果我将android:descendantFocusability="blocksDescendants" 放在LinearLayout 中,则不会发生这种滚动,但我无法选择文本。

我想要的很简单:我不想要这种自动滚动。禁用ScrollView 的这种行为是不可能的,我必须从头开始创建自己的滚动视图类吗?如果不可能,请把它写成答案,这样我就可以放弃了。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_
        android:layout_>
        <LinearLayout
                android:orientation="vertical"
                android:layout_
                android:layout_>
            <TextView
                    android:text="I am text 1. Click me."
                    android:textColor="@color/black"
                    android:textIsSelectable="true"
                    android:background="#FF0000"
                    android:layout_
                    android:layout_/>
            <TextView
                    android:text="I am text 2. Click me."
                    android:textIsSelectable="true"
                    android:background="#00FF00"
                    android:textColor="@color/black"
                    android:layout_
                    android:layout_/>
        </LinearLayout>
</ScrollView>

【问题讨论】:

【参考方案1】:

您可以创建一个 ScrollView 的子类并覆盖受保护的方法:computeScrollDeltaToGetChildRectOnScreen(Rect rect) 并返回 0 以禁用自动滚动效果。

computeScrollDeltaToGetChildRectOnScreen

计算在 Y 方向上滚动的量以获得 矩形完全在屏幕上(或者,如果比屏幕高,在 至少是它的第一个屏幕大小块)。

Kotlin 示例:

class CustomScrollView : ScrollView 
    constructor(context: Context?) : super(context) 
    constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) 
    constructor(context: Context?, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr) 

    override fun computeScrollDeltaToGetChildRectOnScreen(rect: Rect): Int 
        return 0
    

Xml 用法:

<?xml version="1.0" encoding="utf-8"?>
<mypackagename.com.CustomScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_
    android:layout_>
    <LinearLayout
        android:orientation="vertical"
        android:layout_
        android:layout_>
        <TextView
            android:text="I am text 1. Click me."
            android:textColor="@color/black"
            android:textIsSelectable="true"
            android:background="#FF0000"
            android:layout_
            android:layout_/>
        <TextView
            android:text="I am text 2. Click me."
            android:textIsSelectable="true"
            android:background="#00FF00"
            android:textColor="@color/black"
            android:layout_
            android:layout_/>
    </LinearLayout>
</mypackagename.com.CustomScrollView>

【讨论】:

【参考方案2】:

android:descendantFocusability="blocksDescendants" 将阻止其后代接收焦点。

尝试在您的 2 个文本视图之间添加一个虚拟视图并查看。

<View
    android:layout_
    android:layout_
    android:focusable="true"
    android:focusableInTouchMode="true" />

【讨论】:

以上是关于有没有办法防止 ScrollView 在 TextView 获得焦点时自动滚动?的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法在 SwiftUI 中制作分页的 ScrollView?

防止 ScrollView 占用太多高度

防止 Text("string") 被导出为本地化

react-native ScrollView 嵌套 FlatList滚动

解决Android中,禁止ScrollView内的控件改变之后自动滚动 - 转

防止在 iOS 的 Scrollview 中拉伸图像