Reputation: 1253
I am facing a problem.
I have a ScrollView
in my application and I have to drag and drop a TextView
with the help of a touch listener.
The problem is when I drag a TextView
using the onTouchListener()
, the ScrollView
activates and is creating a problem.
Upvotes: 1
Views: 1212
Reputation: 2607
There is a open source project on github released by the CommonsGuy. It's based on the drag-and-drop used by the music app. There is also another drag and drop example here.
Upvotes: 1