我想在Google上搜索字符串,并将结果显示在我活动的另一页中。
我现在的搜索代码是:
Button breakfast = (Button) findViewById(R.id.breakfast);
breakfast.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
// Intent myIntent = new Intent(view.getContext(), Main5Activity.class);
// startActivityForResult(myIntent, 0);
try {
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
String term = Main2Activity.choice + " breakfast recipe using " + Main3Activity.list;
intent.putExtra(SearchManager.QUERY, term);
startActivity(intent);
} catch (Exception e) {
// TODO: handle exception
}
}
});
但是,现在它已设置好,以便在代码运行时它使用外部谷歌应用程序进行搜索,然后使用该应用程序显示结果。我想在我的应用程序内部搜索并在下一个活动(Main5Activity)中显示结果。正如您所看到的,Main5Activity已经设置好,但我对它进行了评论,因为我不确定如何实现它。
这是我希望结果显示在的滚动视图:
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
</ScrollView>
我是Google API新手,所以我只能使用外部应用程序进行Google搜索。非常感谢任何帮助。