Hi all,
one problem coming in touchEvent when we touch the screen in the application, its works only touch like a fireKeyPressed() but i want that its works like a fireKeyReleased().. is it possible....? plz give me solution if any......
my sample code...use in app..
public boolean onTouchEvent(MotionEvent event) {
int x = (int) event.getX();
int y = (int) event.getY();
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
switch (currentState) {
case SHOW_MAINMENU:
................
......
break;
}
break;
}
return super.onTouchEvent(event);
}


