React Native(FlatList下拉刷新,上拉加載,2017-09-13)

多選.gif

1.頭部/尾部
2.item項(xiàng)/item項(xiàng)分割線
3.滾動(dòng)到某item項(xiàng)
4.是否隱藏水平,垂直滾動(dòng)條
5.上啦加載(測試數(shù)據(jù)有點(diǎn)問題,比較難模擬),下拉刷新

import React, {Component, PropTypes} from 'react'
import {
    View,
    Dimensions,
    ListView,
    TextInput,
    Image,
    Text,
    FlatList,
    RefreshControl,
    TouchableOpacity,
} from 'react-native'

let {width, height} = Dimensions.get('window');


export default class TestListPage2 extends Component {

    //構(gòu)造函數(shù)
    constructor(props) {
        super(props)

        this.state = {
            refreshing: false,
            isLoreMoreing: 'LoreMoreing',
            dataSource: [],

        }
        this.responseData = [];
    }


    componentDidMount() {
        // this.Refresh();
        //模擬請求后臺(tái)返回的數(shù)據(jù)

    }


    Refresh = ()=> {

        this.setState({
            refreshing: true,
        });


        setTimeout(() => {
            //默認(rèn)選中第二個(gè)
            this.responseData = [
                {id: 100}, {id: 101}, {id: 102}, {id: 103}, {id: 104}
            ]
            this.setState({
                refreshing: false,
                dataSource: this.responseData
            });
            this.isLoreMore = false;
        }, 2000);
    }

    isLoreMore = false;
    LoreMore = ()=> {

        if (this.isLoreMore == false) {
            this.setState({
                isLoreMoreing: 'LoreMoreing',
            });

            this.isLoreMore = true;
            this.responseData = this.responseData.concat({id: '加載的新數(shù)據(jù)'});
            setTimeout(() => {
                this.setState({
                    dataSource: this.responseData,
                })
            }, 500);

            setTimeout(() => {
                this.setState({
                    isLoreMoreing: 'LoreMoreEmpty'
                })
            }, 500);
        }
    }


    render() {
        return (
            <View style={{flex: 1}}>
                <View style={{
                    marginTop: 20,
                    height: 44,
                    width: width,
                    justifyContent: 'center',
                    backgroundColor: 'gray',
                    alignItems: 'center',
                    flexDirection: 'row'
                }}>
                    <Text onPress={this.Refresh}>{'點(diǎn)擊刷新     '}</Text>

                    <Text onPress={()=> {
                        this._flatList.scrollToIndex({viewPosition: 0, index: 4})
                    }}>{'點(diǎn)擊滾動(dòng)到第4個(gè)'}</Text>


                </View>
                <FlatList
                    showsVerticalScrollIndicator={false}//是否顯示垂直滾動(dòng)條
                    showsHorizontalScrollIndicator={false}//是否顯示水平滾動(dòng)條
                    numColumns={1}//每行顯示1個(gè)
                    ref={(flatList)=>this._flatList = flatList}
                    ListHeaderComponent={this.renderHeader}//頭部
                    ListFooterComponent={this.renderFooter}//尾巴
                    renderItem={this.renderRow}//每行顯示一項(xiàng)
                    ItemSeparatorComponent={this.renderSeparator}//每行底部---一般寫下劃線
                    enableEmptySections={true}//數(shù)據(jù)可以為空
                    keyExtractor={(item, index)=>item.key = index}
                    onEndReachedThreshold={0.1}//執(zhí)行上啦的時(shí)候10%執(zhí)行
                    onEndReached={this.LoreMore}
                    data={this.state.dataSource}
                    refreshControl={
                        <RefreshControl
                            refreshing={this.state.refreshing}
                            onRefresh={this.Refresh}
                            title="Loading..."/>
                    }
                />
            </View>
        );
    }


    renderRow = (item) => {
        let rowData = item.item;
        let index = rowData.key
        return (
            <View style={{height: 150, backgroundColor: 'white', justifyContent: 'center', alignItems: 'center'}}>
                <Text>{rowData.id}</Text>
            </View>
        )
    }

    renderSeparator = ()=> {
        return (
            <View style={{height: 1, backgroundColor: 'rgb(200,200,200)',}}/>
        )
    }


    renderHeader = ()=> {
        return (
            <View style={{
                height: 44,
                width: width,
                justifyContent: 'center',
                backgroundColor: 'red',
                alignItems: 'center'
            }} activeOpacity={1}>
                <Text>{'我是頭部'}</Text>
            </View>
        )
    }


    renderFooter = ()=> {

        if (this.state.dataSource.length != 0 && this.state.isLoreMoreing == 'LoreMoreing') {
            return (
                <View style={{
                    height: 44,
                    backgroundColor: 'rgb(200,200,200)',
                    justifyContent: 'center',
                    alignItems: 'center'
                }}>
                    <Text>{'正在加載....'}</Text>
                </View>
            )
        } else if (this.state.isLoreMoreing == 'LoreMoreEmpty') {
            return (
                <View style={{
                    height: 44,
                    backgroundColor: 'rgb(200,200,200)',
                    justifyContent: 'center',
                    alignItems: 'center'
                }}>
                    <Text>{'暫無更多'}</Text>
                </View>
            )
        } else {
            return null
        }

    }


}

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌灰嫉,老刑警劉巖色解,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件根悼,死亡現(xiàn)場離奇詭異却音,居然都是意外死亡楞抡,警方通過查閱死者的電腦和手機(jī)瓢湃,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進(jìn)店門理张,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人绵患,你說我怎么就攤上這事雾叭。” “怎么了落蝙?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵织狐,是天一觀的道長。 經(jīng)常有香客問我筏勒,道長移迫,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任管行,我火速辦了婚禮厨埋,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘捐顷。我一直安慰自己荡陷,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布迅涮。 她就那樣靜靜地躺著亲善,像睡著了一般。 火紅的嫁衣襯著肌膚如雪逗柴。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天顿肺,我揣著相機(jī)與錄音戏溺,去河邊找鬼渣蜗。 笑死,一個(gè)胖子當(dāng)著我的面吹牛旷祸,可吹牛的內(nèi)容都是我干的耕拷。 我是一名探鬼主播,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼托享,長吁一口氣:“原來是場噩夢啊……” “哼骚烧!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起闰围,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤赃绊,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后羡榴,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體碧查,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年校仑,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了忠售。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,100評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡迄沫,死狀恐怖稻扬,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情羊瘩,我是刑警寧澤泰佳,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布,位于F島的核電站困后,受9級特大地震影響乐纸,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜摇予,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一汽绢、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧侧戴,春花似錦宁昭、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蜕猫,卻和暖如春寂曹,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工隆圆, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留漱挚,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓渺氧,卻偏偏與公主長得像旨涝,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個(gè)殘疾皇子侣背,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容