停止对讲,并在加载后说出Webview

时间:2018-10-29 18:38:57

标签: android webview android-webview accessibility android-accessibility

之前也曾问过类似的问题,但这是很久以前的事了,没有答案。
第一次加载网络视图时,对讲会显示网络视图,但我不想说什么。
我尝试用XML设置内容描述

    android:id="@+id/web"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:contentDescription="CustomText"

,但最后仍显示Webview。 还尝试了importantForAccessbility否,但是它也禁用了对讲功能以读取内容。我想念什么吗?

1 个答案:

答案 0 :(得分:0)

只需用下面的webview xml代码替换您的webview。添加ImportantForAccessibility会为您完成一切。

   <WebView
            android:layout_margin="10dp"
            android:id="@+id/textContent"
            android:importantForAccessibility="no"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" />