当我滚动(0,250)时,我想要包含一个带有滚动的动画。我做了这个代码,但根据动画不滚动。 scrollMe是滚动小部件ID。
ObjectAnimator anim = ObjectAnimator.ofInt(scrollMe, "translationY",
250, 0);
anim.setDuration(800);
anim.start();
scrollMe.scrollTo(0, 250);
答案 0 :(得分:6)
ObjectAnimator objectAnimator = ObjectAnimator.ofInt(view, "scrollY", 0, 250).setDuration(duration);
objectAnimator.start();