我正在做一个大型项目,我们使用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"/>