如何在Android应用中搜索Google?

时间:2011-09-19 09:53:06

标签: java android

我需要创建一个搜索Google的Android应用。我使用这段代码:

Intent browser=new Intent(Intent.ACTION_VIEW);
browser.setData(Uri.parse("http://google.com/#q=qwerty"));
startActivity(browser);

但是,浏览器会加载Google主页,而我需要一个搜索“qwerty”结果的页面。

我该怎么做?

1 个答案:

答案 0 :(得分:7)

你的意思是:

http://google.com/search?q=qwerty