我正在尝试使用 RN0.43 中的 FlatList 在 3 列中呈现约 250 个图像的列表,并且我在 FlatList 的 onLayout 函数中更改图像的宽度以适应屏幕的宽度。
初始性能还可以,但在向上/向下滚动后,有时需要一到两秒钟才能显示图像。
更糟糕的是,如果我更改为屏幕方向,屏幕更新需要 2~3 秒。
一些发现:
屏幕旋转后,调用 FlatList.onLayout 需要一两秒
在 FlatList.onLayout 和图像宽度更新之后,每个图像(大约列表的一半,~150 个图像;而只显示~15 个图像)被渲染 2~4 次,而 render() 只被调用一次。
问题:
- 如何修改代码以提高性能?
- 在多列列表的 getItemLayout() 中,偏移量是否应该类似于 (itemHeight + separatorHeight) * (index%numColumns)?
谢谢。
测试:GalaxySII (4.1.2) 和 Android SDK 模拟器 (7.1.1)
var data = [
require('./res/img/Search.png'),
require('./res/img/test - Copy.png'),
// ~250 items
...];
class app extends React.Component {
renderItem (info, width) {
console.log('renderItem', info.index);
if(width !== this.width) {
this.imageStyle = {width: width-MarginHorizontal , height: width-MarginHorizontal, resizeMode: 'contain'};
}
return (
<Image
source = {info.item}
key = {info.index}
style={this.imageStyle}/>
);
}
render() {
console.log('Test.render');
return (
<View style={{
flex: 1,
flexDirection: 'row',
justifyContent: 'flex-start',
alignItems: 'center',
backgroundColor: '#F5FCFF'
}}>
<GridList
numColumns={3}
columnWrapperStyle={{ alignItems: 'center', marginVertical: 5, justifyContent: 'space-around'}}
data={data}
renderItem={this.renderItem}
/>
</View>
);
}
}
class GridList extends Component {
onLayout(event) {
console.log('GridList.onLayout()');
let newColumnWidth = event.nativeEvent.layout.width/ this.numColumns;
this.layout = Object.assign({},event.nativeEvent.layout);
if( undefined === this.columnWidth || Math.abs(newColumnWidth - this.columnWidth) > WidthTolerance ) {
this.columnWidth = newColumnWidth;
if(this.isComponentMounted) {
this.setState({renderCount: this.state.renderCount+1});
} else {
this.state.renderCount +=1;
}
}
}
render() {
console.log('GridList.render()');
return (
<FlatList
{...(this.modifiedProps)}
renderItem={(info) => { return this.props.renderItem(info, this.columnWidth); }}>
{this.props.children}
</FlatList>
);
}
}