为什么即使填充了TextView,TextView的对讲文本也会被读取两次,提示也被读取?

时间:2018-07-18 07:43:00

标签: android accessibility talkback

我正在做一个大型项目,我们使用TextView来显示文本和提示。

使用对讲(可访问性)时,我注意到TextView上的提示被读取了两次。

即使TextView中有文本,提示仍将被读取。

当我改用EditText时,仅第二个问题仍然存在(输入的文本仍然显示提示)。这似乎是正常的(但令人困惑)Android行为,因为类似PlayStore的Google应用也可以这样做。

但是TextView为什么不读两次提示而EditText不是?


PS:我知道可以从TextView切换到EditText,但是由于我们也使用了高度依赖TextView的自定义视图,因此这是不可行的选项。

我也知道使用label for,但是我对TextView为何两次读取提示的技术背景更感兴趣。

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="test"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent"/>

Accessibility is read twice

0 个答案:

没有答案