droidQuery icon indicating copy to clipboard operation
droidQuery copied to clipboard

Click event does not occur when swipe* events are bound

Open xnuk opened this issue 11 years ago • 1 comments

$.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

xnuk avatar Feb 21 '14 12:02 xnuk

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!

phil-brown avatar Feb 21 '14 16:02 phil-brown