React Native - 导航时图像未被清除

时间:2017-01-09 15:01:26

标签: android react-native react-native-android react-native-listview

我使用React Native的导航器进行路由,使用ListView来显示图像组,我使用的是Android。当我触发导航时,图像不会离开页面,它会闪烁,如下所示。

enter image description here

渲染功能

_renderRow (rowData){
    return (
       <TouchableWithoutFeedback onPress={()=>this._getCampaigns(rowData)}>
           <Image style={{width: 120, height: 120}}
              source={{uri: rowData.logo, scale: 1}}/>
           </TouchableWithoutFeedback>)
}

render() {
   return (<View style={styles.container}>
      <ListView dataSource={this.state.imageList} 
       contentContainerStyle={styles.list}
       renderRow={(rowData)=> this._renderRow(rowData)}/>
   </View>);
}

样式

const styles = StyleSheet.create({
        container: {
            flex: 1
        },
        list: {
            flexDirection: 'row',
            flexWrap: 'wrap'
        }
});

可能是什么原因?

感谢。

0 个答案:

没有答案