在ReactNative的Android应用程序中缓慢动画
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在ReactNative的Android应用程序中缓慢动画相关的知识,希望对你有一定的参考价值。
我正在使用带有react-native的redux,在一个页面上我使用了FlatList和一些使用Animated.new()
的动画。同样在他的应用程序中我使用反应导航但我的应用程序的UI动画非常慢。一个原因是列表数百。我试图通过使用getItemLayout
来增强FlatList性能,但仍然应用程序表现得非常慢,尽管相同的代码在ios上工作效率很高。
我已经浏览了以下网址:https://facebook.github.io/react-native/docs/performance.html
任何人都可以指导我如何在这里提高性能?
编辑:
添加getItemLayout和onEndReachedThreshold后性能得到改善,但抽屉图标仍然无响应。
<FlatList
refreshControl={
<RefreshControl
refreshing={this.props.gameList.get('isFetching')}
onRefresh={()=>{
this.props.getGameList()
}}/>}
getItemLayout={this.getItemLayout}
contentContainerStyle={styles.gameListContent}
data={gameListData}
keyExtractor={this.keyExtractor}
renderItem={props=>this.renderItem({...props, isFirst: props.index === 0, isLast: props.index === gameListData.length-1})}
ItemSeparatorComponent={this.renderSeparator}
initialNumToRender={25}
onEndReachedThreshold={0.5}
/>
为了提高FlatLsit的性能,在初始渲染时通过切片10到15将数据传递给它,并且在scrollUp事件中传递所有数据,因为它加载了我们在setInitilaItemToRender中指定的更多数据,因为它多次触发onEndReached事件。
为每个列表项创建PureComponent帮助我提高了列表性能。然而有些人建议使用ListView而不是FlatList,但我没有尝试。请按照以下URL获取更多详细信息
https://github.com/facebook/react-native/issues/13649
以上是关于在ReactNative的Android应用程序中缓慢动画的主要内容,如果未能解决你的问题,请参考以下文章
React Native - 如何在 React Native 应用程序中使用 WebView 显示我的网站通知(适用于 Android)
Android ReactNative java.lang.UnsatisfiedLinkError:could find DSO to load: libreactnativejni.so
如何在 React Native 中创建 Android 即时应用程序?
React Native - Android - 应用导航期间闪屏