Normally when you touch and move within a multiline edit view it scrolls the text, but when it is placed on a scroll view it seems to put more priority on scrolling the scroll view and maybe scrolls the Edit view a couple pixels if you are lucky.
I've read a thread on here similar to this where someone had a listview in a scrollview and it was just recommended not to do it. I have other singleline EditText views on there that I'm fine with the behavior of scrolling when they are touched and the focus changes to the top item on the screen and sometimes the keyboard opens when done scrolling, etc.
I'd just like some way to prevent the multiline EditText from passing its touch events up to the parent. Something like returning True to the Touch event (Which doesn't work in this case since it just prevents the EditText from getting focus...yet the scrollview still scrolls). There must be some way of isolating the EditText from the Scrollview as I've seen other apps that have them like this and they work.
I've read a thread on here similar to this where someone had a listview in a scrollview and it was just recommended not to do it. I have other singleline EditText views on there that I'm fine with the behavior of scrolling when they are touched and the focus changes to the top item on the screen and sometimes the keyboard opens when done scrolling, etc.
I'd just like some way to prevent the multiline EditText from passing its touch events up to the parent. Something like returning True to the Touch event (Which doesn't work in this case since it just prevents the EditText from getting focus...yet the scrollview still scrolls). There must be some way of isolating the EditText from the Scrollview as I've seen other apps that have them like this and they work.