I want to learn how to solve this problem. I want to have a Horizontal scrollview with the scroll blocked (the user should not be able to scroll it) and inside that horizontal scrollview i want to have another horizontal scroll view, and this scrollview must be able to be scrolled by the user (it haves more content that the width of the screen).
It is possible to do it? i tryed using this on the parent horizontal scroll view: ((HorizontalScrollView) view).setHorizontalScrollBarEnabled(false); ((HorizontalScrollView) view).setEnabled(false); ((HorizontalScrollView) view).setFocusable(false); ((HorizontalScrollView) view).setFocusableInTouchMode(false); and this on the child horizontal scroll view: ((HorizontalScrollView) view).requestFocus(); It is not working, The child appears to have a scroll bar but it cannot be scrolled. How can this be solved? PD: I know that this is not a good practice, but i want to learn how to achieve this goal. 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

