Eclipse で作成している Android アプリケーションでアクティビティを表示したいと考えています。これは私がそれを行う方法です:
Intent intent = new Intent(HomeActivity.this, SecondActivity.class);
intent.putExtra("query", query);
startActivity(intent);
表示している場所で新しいアクティビティのイベントを処理するにはどうすればよいですか? 2 番目のアクティビティのイベント リスナーを作成しました。イベントを処理したい場合は、次のようにクラス「SecondActivity」のインスタンスを作成する必要があります。
SecondActivity act = new SecondActivity();
act.itemselectedlisteners.add(new ListItemSelectedListener() {
@Override
public void onItemSelected(String key) {
// TODO Auto-generated method stub
}
});
しかし、ダイアログを表示する方法がわかりません。これらのコードを組み合わせるにはどうすればよいですか?