从零开始RNReact NativeReact Native的魔盒

ReactNative之ListView分组样式(九)

2017-05-05  本文已影响826人  袁峥

前言

眼看很多公司都开始尝试使用ReactNative,达到跨平台开发,最近也写了很多文章,希望让更多想了解的同学快速上手ReactNative.

如果喜欢我的文章,可以关注我微博:袁峥Seemygo

ReactNative之ListView分组样式

城市列表.png

ListView分组原理

默认的提取函数可以处理下列形式的数据:

{ sectionID_1: { rowID_1: rowData1, ... }, ... }

或者:

{ sectionID_1: [ rowData1, rowData2, ... ], ... }

或者:

[ [ rowData1, rowData2, ... ], ... ]
3种提前格式.png

实现ListView分组样式步骤

// 1.创建数据源
        var dataSource = new ListView.DataSource({
            rowHasChanged:(r1,r2)=>r1 !== r2,
            sectionHeaderHasChanged:(s1,s2)=>s1 !== s2
        });

var sectionData = {};
        for (var i = 0;i < provinceList.length;i++){
            var province = provinceList[i];
            var cityList = province['sub'];

            var cityArr = [];
            for(var cityIndex = 0;cityIndex < cityList.length;cityIndex++) {
                var city = cityList[cityIndex];
                cityArr.push(city['name']);
            }
            sectionData[province['name']] = cityArr;
        }

this.state = {
            ds : dataSource.cloneWithRowsAndSections(sectionData)
        }
 render() {
        return (

            <View style={{flex:1,marginTop:20}}>
                <ListView dataSource={this.state.ds}
                          renderRow={this._renderRow.bind(this)}
                          renderSectionHeader={this._renderSectionHeader.bind(this)}
                          renderSeparator={this._renderSeparator.bind(this)}
                />
            </View>
        )

    }
    _renderSeparator() {
        return (
            <View style={{height:1,backgroundColor:'#e8e8e8'}}/>
        )
    }

    _renderSectionHeader(sectionData, sectionID) {
        return (
            <View style={{backgroundColor:'rgb(247,247,247)'}}>
                <Text style={styles.sectionStyle}>{sectionID}</Text>
            </View>
        )
    }

    // 实现数据源方法,每行cell外观
    _renderRow(rowData, sectionID, rowID, highlightRow) {
        return (
            <View style={{backgroundColor:'white',height:45,justifyContent:'center'}}>
                <Text style={styles.rowStyle}>{rowData}</Text>
            </View>
        );
    }
上一篇下一篇

猜你喜欢

热点阅读