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.
我想将列表视图项移动到第一个。
所以我应该将项目相对于列表视图移动到(0,0)。
我像这样在xml中使用动画
< translate android:duration="5000" android:fromYDelta="0" android:toYDelta="0%p"/ >
但它不起作用。
0%p不意味着列表视图的开始?
0%p
非常感谢任何帮助,谢谢
使用应该使用 .setSelection 去开始列表视图,
ListView.setSelection(0);