我是第一次开发一个android应用程序。我可以使用以下代码进行 www.google.com 搜索:
public void onSearchClick(View v) {
try {
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
String term = editText.getText().toString();
intent.putExtra(SearchManager.QUERY, term);
startActivity(intent);
} catch (Exception ex) {
}
}
但是是否也可以在 images.google.com 上进行类似的搜索(使用在 editText-widget 中填写的单词)?提前致谢。