问题
I have HorizontalScrollView with child Layout inside. After adding view into child layout I can't scroll HorizontalScrollView to the right side of scroller.
scrollTo, scrollBy, smoothScrollTo, smoothScrollTo don't work.
回答1:
solved:
LinearLayout ll = (LinearLayout) findViewById(R.id.ll);
final HorizontalScrollView hsv = (HorizontalScrollView) findViewById(R.id.hsv);
OnGlobalLayoutListener listener = new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
hsv.scrollTo(100, 0);
}
};
ll.getViewTreeObserver().addOnGlobalLayoutListener(listener);
来源:https://stackoverflow.com/questions/6696793/scrollto-scrollby-smoothscrollto-smoothscrollto-dont-work-in-scrollview-afte