(クラスMainActivity(extends Activity)があり、メソッドsetContentView(GameView); GameViewはViewを拡張するクラスであり、このクラス(GameView)にはメソッドがあります。
boolean inTouchEvent(MotionEvent event){
switch(event.getAction()){
case MotionEvent.ACTION_DOWN:
//here I would like to go to another activity to class MainMenuActivity()
}
}
前もって感謝します。
了解しました。
public boolean onTouchEvent(MotionEvent event){
switch(event.getAction()){
case MotionEvent.ACTION_DOWN:
Intent intent = new Intent (contexTmp, MainActivity.class);
contexTmp.startActivity(intent);
((Activity)getContext()).finish();
}
}