Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drag could not start.... #15

Open
bidasknakayama opened this issue Apr 4, 2016 · 1 comment
Open

Drag could not start.... #15

bidasknakayama opened this issue Apr 4, 2016 · 1 comment

Comments

@bidasknakayama
Copy link

Hi

with Nexus 7 , To start drag a list was easy. I just touch a list and just drag.

with Nexus 5x ( android 6 ), To start drag is not easy. Almost case, I can not drag at all.

Any idea ?

@raitisbe
Copy link

raitisbe commented Apr 5, 2016

For me ACTION_DOWN was not intercepted correctly. Had to add
@OverRide
public boolean onInterceptTouchEvent(MotionEvent ev) {
if(ev.getAction() == MotionEvent.ACTION_DOWN ) return true; else return super.onInterceptTouchEvent(ev);
}

for it to work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants