Hi, let me see if I explain, I have an application for taking orders by waiters in restaurants, bars and the like.
It's a panel where I place labels, buttons, panels, images, etc. simulating to be tables, planters, walls, etc.
The user can adjust the objects on the screen to make it look as similar as possible to the room where the tables really are.
Among other things you can "move/drag a table" to the desired position. There is no problem with this using the "ListenTouchEvent" of the view.
The problem has arisen now that I have been asked for larger rooms and they do not fit on the device screen properly, so I have decided to change the panel where I place the views to a HorizontalScrollView.
Everything works fine, like a normal panel, but I have encountered the problem that now you can't move/drag the views on the panel because it seems to have preference the "touch" of the panel to make the scroll, and then the "touch" of the view to move/drag it doesn't work.
My question is if there is a way to disable scrolling when a view is being moved/dragged on the HorizontalScrollView panel, and re-enable it when the user has finished adjusting the "table" in place.
I hope I have explained myself.
Thank you very much.