I have a horizontalScrollView, and I need to autoscroll to complete the animation when the view loads. I applied this method for this:
final HorizontalScrollView strip = (HorizontalScrollView) contentView. findViewById(R.id.horizontalScrollView1); strip.postDelayed(new Runnable() { public void run() { strip.fullScroll(HorizontalScrollView.FOCUS_RIGHT); } }, 1000L);
It works fine, but the main problem is that the scroll animation is too high, and I need to implement slow scrolling. Do you have any ideas?
source share