Need Help on the scrolling Bar in Android? [closed]
I have created a simple application which has a scroll bar. The scroll bar has 5 textviews such as Movies, Top10 Movies and so on, also the scroll bar has 2 arrow images, when I click the arrow image the textviews has to be scrolled. Can any one help me regarding on this, I am struggling on this.
san_startimg.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
hv.arrowScroll(View.FOCUS_LEFT);
}
});
san_endimg.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
hv.arrowScroll(View.FOCUS_RIGHT);
}
});
Have you tried HorizontalScrollView#requestChildRectangleOnScreen
to scroll to the next or previous item?
精彩评论