onCreate メソッドに次のコードがあります。
ImageView iv01 = (ImageView)findViewById(R.id.hexagon01);
iv01.setOnTouchListener(new OnTouchListener(){
public boolean onTouch(View view, MotionEvent event) {
Intent intent = new Intent(view.getContext(), ChoiceActivity.class);
startActivity(intent);
return true;
}
});
画像に触れると、新しいアクティビティが正しく読み込まれます。戻るボタンで戻れます。しかし、戻るボタンをもう一度押してアプリを閉じると、onTouch イベントが再び起動され、アクティビティが再度読み込まれます。どうすれば回避できますか?
ありがとう。