我在我的应用程序中使用 Web 视图并加载 URL“http://google.com”现在我想自动搜索我在 TextView 中输入的单词。
thnx 回答我只是使用它并且它有效
String qString ="http://www.google.com/search?q=%s";
String test="dogs";
String q = qString + test;
web.loadUrl(q);
一个非常简单的方法。叹
我在我的应用程序中使用 Web 视图并加载 URL“http://google.com”现在我想自动搜索我在 TextView 中输入的单词。
thnx 回答我只是使用它并且它有效
String qString ="http://www.google.com/search?q=%s";
String test="dogs";
String q = qString + test;
web.loadUrl(q);
一个非常简单的方法。叹