I want to know how can I return state of events from onTouch the button to my thread. In code I use:
gameview.java (here I "listen" for specific actions from buttons):
public boolean onTouch(View v, MotionEvent event) {
return thread.getGameState().onTouch(v, event);
}
gamestate.java (here are buttons that should return state - I give 1 example):
@Override
public boolean onTouch(View v, MotionEvent event){
if (v.getId()== R.id.Upbutt){
if (MotionEvent.ACTION_DOWN == event.getAction()){
_topBatX += _batSpeed; _bottomBatX -= _batSpeed;
UpbuttButton.setBackgroundResource(R.drawable.upon);
mpButtonClick.start();
} else if (MotionEvent.ACTION_UP == event.getAction()) {
UpbuttButton.setBackgroundResource(R.drawable.up);
}
return true;
} else if (v.getId()== R.id.Downbutt){
if (MotionEvent.ACTION_DOWN == event.getAction()){
_topBatX -= _batSpeed; _bottomBatX += _batSpeed;
DownbuttButton.setBackgroundResource(R.drawable.upon);
mpButtonClick.start();
} else if (MotionEvent.ACTION_UP == event.getAction()) {
DownbuttButton.setBackgroundResource(R.drawable.down);
}
return true;
}
return true;
}
Code compiles with no error. Buttons react on ACTION_DOWN and I hear click sound effect that i defined, but there is no action on _topBatX -= _batSpeed; _bottomBatX += _batSpeed; which should return TRUE to the thread but it don't. Any advice?