Android doesn't really support putting two ScrollViews one inside another. You'll need to either take that specific row outside of the ListView or implement your own Listview that knows when to pass the touch events to that views (or just send scrollBy commands to that view using the touch location changes)
On Wednesday, July 18, 2012 3:24:35 PM UTC+3, Jacky Lam wrote: > > Dear All, > I am implementing a listview in android. In the listview, most of the rows > are no need scroll horizontally. > Except the first row, I add a HorizontalScrollView to it. The listview can > construct prefectly. > However, when I scroll the first row of list view Horizontally, it > sometimes can scroll. But, most of the time seems neglecting the "scroll > horizontally even". > > Does anyone know the solution to implement a HorizontalScrollView inside > the listview? > > Thanks. > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

