我正在尝试为 Scrollview 设置动画。特别是 SmoothScrollTo(x,y) 函数。关于我如何解决这个问题的任何想法。谢谢
ScrollView scroller = (ScrollView) findViewById(R.id.scroller);
if(true){
scroller.smoothScrollTo(0,30);
animation anim = AnimationUtils.loadAnimation(this, R.anim.down);
anim.setFillAfter(true);
scroller.startAnimation(anim);
} else{
.....
}