我需要创建一个搜索Google的Android应用。我使用这段代码:
Intent browser=new Intent(Intent.ACTION_VIEW);
browser.setData(Uri.parse("http://google.com/#q=qwerty"));
startActivity(browser);
但是,浏览器会加载Google主页,而我需要一个搜索“qwerty”结果的页面。
我该怎么做?
答案 0 :(得分:7)
http://google.com/search?q=qwerty