重写listView in react native

时间:2017-03-30 11:50:33

标签: react-native

我想将css更改为图片carousel插件中的选定项目,但我的更改没有反映出来,因为我想在本机中刷新listView组件。

<ListView
          initialListSize={10}
          onLayout={this.handlePreviewLayout}
          dataSource={this.props.dataSource}
          renderRow={this.renderImagePreview}
          onScroll={this.handleScrollRev}
          horizontal={true}
          scrollEnabled={true}
          ref={(comp) => { this._refPreviewListView = comp; return; }}
        />    
<View>
        <Image
          style={[
            styles.previewImage,
            previewImageStyle,
            { width: previewImageSize, height: previewImageSize },
            { borderRadius: this.state.borderRad }
          ]}
          source={getImageSourceFromDataSource(row)}
          resizeMode="cover">
        </Image>
        <View style={[styles.onlineStatus, { backgroundColor: this.badgeStatus }]} >
        </View>
      </View>

0 个答案:

没有答案