I\'ve started working on an app. I build the menu yesterday but the onClick method doesn\'t work! I created a class that extends View and called her MainMenuObject - that cl
just add callOnClick() to your onTouchEvent() method
callOnClick()
onTouchEvent()
public boolean onTouchEvent(MotionEvent event) { .....YOURCODE..... callOnClick(); return boolean; }