Tagged Questions
1
vote
0answers
72 views
How can i handle setOnScrollListener for Custom View android
I have a list view where i created custom adapter. I am displaying a button when i swipe right, so i have setOnTouchListener. My problem is i want to remove the button and display another button when ...
0
votes
0answers
171 views
Android: ScrollView Intercepting Map API V2 touch
I have an Activity that have a scrollview that countains a lot of things... one of these is a mapfragment api v2. The BIG AND TROLLING PROBLEM is when I move the map vertically, ALL the Scroll moves, ...
1
vote
1answer
591 views
android scrollview ontouchlistener exception
I'm getting the following exception:
E/AndroidRuntime(31245): java.lang.IllegalArgumentException: pointerIndex out of range
E/AndroidRuntime(31245): at ...
0
votes
0answers
100 views
How to use onTouch event with scroll view
I have a LinearLayout and I've added onTouch listener on this layout. but when adding scrollview inside this layout , the onTouch doesn't work, why and what is the possible solution please ?
0
votes
1answer
493 views
How to launch OnTouchListener on the elements of a ScrollView but only when the user is not Scrolling?
i have a huge problem managing my horizontal scrollview. It haves inside a horizontal linear layout with a lot of vertical linear layouts wich haves a text and a image.
I want that when the user ...
1
vote
1answer
639 views
Scrollview and touch listener
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 ...
2
votes
1answer
660 views
How to Handle TouchEvents for Child View(CustomView) in Parent View (ScrollView)?
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 ...
113
votes
5answers
47k views
Android - HorizontalScrollView within ScrollView Touch Handling
I have a ScrollView that surrounds my entire layout so that the entire screen is scrollable. The first element I have in this ScrollView is a HorizontalScrollView block that has features that can be ...