如何获取列表视图内容高度(不是列表视图高度)。是否可以使用 onLayout 方法?
答案 0 :(得分:1)
我明白了。我们可以使用 onContentSizeChange 方法获取列表视图内容高度。
<ListView
ref={ref => this.listView = ref}
onContentSizeChange={this.onContentSize}
/>
onContentSize(contentWidth, contentHeight) {
console.log("<<<<<< content >>>>>>>>>", contentWidth, contentHeight);
}