I have an Android application screen in which I have a form where a user can take an image and fill in pic details. I also want the user to write something above the image (it's like a finger drawing), but the problem is that too many fields made the view scrollable, and therefore the user cannot draw the image. Can I somehow disable parental scrolling when I touch my image?
Have you tried with:
mYourImageView.requestDisallowInterceptTouchEvent(true);
Called when the child does not want this parent and his ancestors to intercept touch events using onInterceptTouchEvent (MotionEvent).
Source: https://habr.com/ru/post/1497425/More articles:After invalidate (), is it possible to get a new session from the request object? - servletsImplementing PATCH with Delta using JSON Formatter - c #Notification about updating added tabs - javascriptHow to check the phone number field to accept only numbers and a maximum of 12 digits? - c #Why do people use buttons and other HTML inputs? - jqueryDo I need to save classes of the same package in the same descriptor when using multiple dex files - javaTunneling two sockets in java - javaHow can I grep in a loop? - linuxgit: get commit id and commit note - gitPython subprocess freezes - pythonAll Articles