In my app i am using ScrollView for scrolling the ImageView, and i will add one customview dynamically to that ScrollView overlay of ImageView, i have onTouch events for customview. after adding to the scroll view i am not able to use the touch listeners of customview, still scrollview was working on that.

how to stop the scrollview touch listeners, and how to enable our custom view touch listeners..

link|improve this question

Touch listeners events are not supported in ScrollView. – Balaji K Sep 13 '11 at 5:48
ok, this is my requirement: ImageView overlay CustomView for paint using finger, and scroll the image if it is larger than physical display. how to solve this. – RajaReddy P Sep 13 '11 at 5:55
@Balaji, is it possible or not to add a CustomView with touch listeners as a ScrollView Child.. – RajaReddy P Sep 13 '11 at 7:06
In question you are saying ScrollView as Parent and in above comment as Child?? – Balaji K Sep 13 '11 at 7:52
i.e customview child for scrollview – RajaReddy P Sep 13 '11 at 8:50
feedback

1 Answer

up vote 0 down vote accepted

I suggest you not to go with ScrollView. Simply add your custom view in LinearLayout and implement OnGestureListener and then using GestureDetector you can able to listen all events(like onDown(),onFling(),onScroll(),onSingleTapUp(),onDown(),etc). You can sense scroll magnitudes and then by using scrollBy() method you can scroll your image(custom view). For more detilas you can refer following posts: Smooth scrolling in Android

link|improve this answer
i have one more solution for scrolling by using onTouchListeners, but problem is i am not able to synchronous scrolling of imageview and customview. if i scroll imageview, not able to scroll the customview with same distance from x and y. – RajaReddy P Sep 13 '11 at 8:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.