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.
我希望图库图像在单击按钮时来回动画。我使用了 setSelection 方法,但它只是滚动到下一个和上一个项目,没有任何动画。有什么办法可以做到这一点?
它是 Android Gallery 上的一个错误,已弃用。我曾经模拟一个用户Fling来实现动画。
int currentPosition = gal.getSelectedItemPosition(); gallery.setSelection(currentPosition + 1); gallery.onFling(null, null, (float) (currentPosition + 1) * 1000, 0);