Android:从互联网收集快速搜索框结果
我正在做一个允许用户在服务器上搜索的应用程序。如何从快速搜索框中获取文本并将其发送到服务器?
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String search= intent.getStringExtra(SearchManager.QUERY);
}
字符串“search”是用户输入的文本吗?
P/S:抱歉我的英语不好。希望你们明白我在说什么。 谢谢。
关注
维尼克斯
I'm doing a app which allow user to search on the server. how can i get the text from the Quick Search Box and send to server?
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String search= intent.getStringExtra(SearchManager.QUERY);
}
the string "search" is it the text which typing by user?
P/S: sorry about my bad english. Hope you guys understand what's I'm talking about.
Thanks.
Regard
Wynix
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,字符串“search”是用户搜索过的字符串。
一旦你有了这个,你就可以使用 HttpGet 对象向服务器发送请求:
然后你可以解析 HttpResponse 对象的结果:
Yes, the String "search" is the string the user has searched for.
Once you have this you can send a request to your server using an HttpGet-object:
Then you can parse the result from the HttpResponse-object: