gpt4 book ai didi

android - webView 中的搜索文本不起作用

转载 作者:行者123 更新时间:2023-11-29 17:51:53 26 4
gpt4 key购买 nike

我正在使用 this code在 textView 中搜索单词。显示了按钮和 EditText,但它们不起作用。在代码中有一条警告说

The method findAll(String) from the type WebView is deprecated

为线

wv.findAll(findBox.getText().toString());

其余代码在 this link 中.

最佳答案

使用

wv.findAll(findBox.getText().toString());

对于 API 版本 < 16 和使用

wv.findAllAsync(findBox.getText().toString());

对于 API 版本 > 16。

使用以下代码确保您的代码适用于所有版本:

int API = android.os.Build.VERSION.SDK_INT;
if(API < 16) {
wv.findAll(findBox.getText().toString());
} else {
wv.findAllAsync(findBox.getText().toString());
}

关于android - webView 中的搜索文本不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22312652/

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