- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
onEndReachedThreshold number
调用 onEndReached 的像素阈值(虚拟的,非物理的)。 所以我只想知道这是什么意思,是从顶部开始的阈值,还是从底部开始的阈值。
从顶部? - 如果我设置 onEndReachedThreshold ={10} 的值,我的 onEndReached 是否会在我滚动到 10 像素或其他位置时立即调用。
从底部? - 如果我设置 onEndReachedThreshold 的值 ={listview height -10},我的 onEndReached 是否会在我滚动到 10 像素或其他位置时立即调用。
最佳答案
对于使用 FlatList
而不是 ListView
的任何人,请注意参数单位已更改。
对于 ListView
它是从底部开始的像素,但根据 docs for FlatList , 它是从列表项底部算起的长度单位。
How far from the end (in units of visible length of the list) the bottom edge of the list must be from the end of the content to trigger the onEndReached callback. Thus a value of 0.5 will trigger onEndReached when the end of the content is within half the visible length of the list.
因此,如果您希望列表在用户浏览到当前数据集的一半时更新,请将值设置为 0.5
关于android - onEndReachedThreshold 在 react-native 中的真正含义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39366356/
这是我的平面列表代码: this.handleOnScroll(event) } scrollEventThrottle={16} ref='scrollUp' data={this.sta
from documentation : onEndReachedThreshold number 调用 onEndReached 的像素阈值(虚拟的,非物理的)。 所以我只想知道这是什么意思,是从顶
我是一名优秀的程序员,十分优秀!