droidQuery
droidQuery copied to clipboard
Click event does not occur when swipe* events are bound
$.with(this, R.id.button1)
.click(new Function(){
@Override public void invoke($ arg0, Object... arg1) {
Log.i("event", "click"); //never occurs.
}
})
.swipeUp(new Function(){
@Override public void invoke($ arg0, Object... arg1) {
Log.i("event","swipeUp");
}
});
- I'm using release 1.0.7 version
I am setting this as a bug. It is a known issue that the swipe functionality can cause other touch events to not work properly. I will work on this right away. Thanks for your help!