我试图根据ListView上的滚动位置移动ListVies的Y轴。我要使用ObjectAnimator
setOnScrollListener
更改我的Y位置
这是在onScroll
事件 -
ObjectAnimator mover1 = ObjectAnimator.ofFloat(postCommentsListView, "translationY", - currentScrollPositionY);
mover1.setDuration(0);
mover1.start();
问题是当我滚动得非常慢时,翻译会闪烁。但是在相对快速的卷轴上一切正常。