Android ListView 起始偏移量?
有人知道如何更改 ListView 的起始偏移量吗?
我的意思是使列表视图的起始项成为不同的项,然后编号为零,
因此当您从起始点向下拖动列表视图时
,当我尝试使用 ListView.offsetTopAndBottom(x) 时, 它将返回到第一个(自定义)起始点项。影响, 只是它对我来说不可用,因为它改变了整个视图的偏移(底部也是如此)
anyone knows how do i change the starting offset of a ListView ?
i mean to make the list view's starting item a different item then number zero
so when you drag down the listview from starting point it will return to the first (custom) starting point item
when i try using ListView.offsetTopAndBottom(x) it gets that effect,
only its not usable for me because it changes the offset of the entire view (the bottom as well)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 setSelection() 来设置列表中的选定项目,从而确保该项目可见。
You can try to use setSelection() to set the selected item in the list which, in turn, should make sure that item visible.