I want to scroll multiple items in Horizontal scroll view on the click of left and right arrow click which are resided in both corners. Means I have a Horizontal scroll view with two buttons left and right for scrolling items according to the same. I have searched enough on web but nothing matched. Please suggest me for the right solution regarding the same.
I want to scroll multiple items in Horizontal scroll view on the click of
Share
Use
yourScrollView.scrollTo(x, y);in the button listener method. Add further conditions to limit the ends or to make it infinitely scrollable.Go through the android documentation for more info…