We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello. I have imported your lib in my app and am using its 'statik' feature for drag & drop ImageViews. It is a great library, thank you :)
My question is: Is there a way to detect where user drops the object?
Edit: When I use this code to detect user's touch release, the object (ball) doesn't move anymore:
ball
ball.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { if(event.getAction() == MotionEvent.ACTION_UP) Toast.makeText(MainActivity.this, "Dropped.", Toast.LENGTH_SHORT).show(); return true; } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello.
I have imported your lib in my app and am using its 'statik' feature for drag & drop ImageViews. It is a great library, thank you :)
My question is:
Is there a way to detect where user drops the object?
Edit:
When I use this code to detect user's touch release, the object (
ball
) doesn't move anymore:The text was updated successfully, but these errors were encountered: