答えて

2

これは、あなたがrenderItem関数に

renderItem(item, that) { 
     return <TouchableOpacity style={{alignItems:"center"}} onPress={that.showPlayer.bind(this, item)}> 
      <ImageLoad 
       placeholderSource = {require('../images/PlaceHolder.png')} 
       style={styles.thumbnail} 
       isShowActivity = {false} 
       source={{uri: thumbnailObj.value}} 
     /> 
     <Text style={styles.gridText}> {item.name}</Text> 
    </TouchableOpacity> 
    } 

render() { 
    return (
    <View> {this.renderItem(item, this)} </View> 
)} 
をこれの参照を渡す必要が反応し、ネイティブ・グリッドビューで発行していません
関連する問題