gpt4 book ai didi

android - ScrollView 正在通过对讲而不是其子 TextViews 获得关注

转载 作者:行者123 更新时间:2023-11-30 00:54:44 25 4
gpt4 key购买 nike

我有一个内部有多个 TextView 的 ScrollView(默认情况下不可聚焦)。当我使用 TalkBack 在屏幕中导航时,TalkBack 只会关注整个 ScrollView 并立即读取其所有内容。

我尝试了一些方法来让 TalkBack 关注每个 TextView 而不是 ScrollView 容器,但我找不到好的方法来做到这一点。这是示例代码:

<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/string"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/a_string"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/some_string"/>

</LinearLayout>

</ScrollView>

我尝试将 android:focusable=true 添加到每个 TextView,这使它们可以通过 TalkBack 获得焦点,但父 ScrollView 仍然首先获得焦点。理想情况下,我更希望 TalkBack 完全忽略 ScrollView,并且焦点直接转到其 subview 。

我怎样才能让 TalkBack 完全忽略 ScrollView,而是一个一个地关注每个子 TextView?

最佳答案

你可以在 ScrollView 上使用 android:importantForAccessibility="no" 让 talkback 绕过 rootview 直接遍历 subview

关于android - ScrollView 正在通过对讲而不是其子 TextViews 获得关注,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40368103/

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