0

我在我的应用程序中使用 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);

一个非常简单的方法。叹

4

2 回答 2

0

尝试这个:

http://www.google.com/search?q=dogs

用文本字段中的任何内容替换狗。

于 2012-07-27T03:24:46.207 回答
0

使用 String.format(..) 方法将参数放在字符串中。所以

     String qString ="http://www.google.com/search?q=%s";

是查询字符串。

     String test="dogs";  // or whatever.
     String.format(qString, test);
于 2012-07-27T03:47:17.413 回答