Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在其中有水平滚动视图视图(按钮)是动态添加的。
我想要的是当活动开始时水平滚动视图自动从右到左滚动。
我被这个问题困住了。任何人都知道我怎样才能做到这一点?
如果你想在最右边滚动:
int w = myHorizontalScroll.getWidth(); myHorizontalScroll.scrollTo( w, 0 );
如果你想在最左边滚动:
myHorizontalScroll.scrollTo( 0, 0 );
如果你想要一个平滑的滚动,你可以使用
myHorizontalScroll.smoothScrollTo( w, 0 );