本文介紹了react-native ListView下拉刷新上拉加載實現(xiàn)。分享給大家,具體如下:
創(chuàng)新互聯(lián)公司成都企業(yè)網(wǎng)站建設(shè)服務,提供網(wǎng)站制作、成都網(wǎng)站建設(shè)網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設(shè)計,成都響應式網(wǎng)站建設(shè),網(wǎng)頁設(shè)計師打造企業(yè)風格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務。歡迎咨詢做網(wǎng)站需要多少錢:18982081108
先看效果圖
下拉刷新
React Native提供了一個組件可以實現(xiàn)下拉刷新方法RefreshControl
使用方法
<ListView refreshControl={ <RefreshControl refreshing={this.state.refreshing} onRefresh={this._onRefresh.bind(this)} /> } //... </ListView>
在視圖加載的時候的時候,將refreshing設(shè)置為true,數(shù)據(jù)加載完成設(shè)置為false即可
上拉加載
利用ListView里的onEndReached方法實現(xiàn),ListView在滾動到最后一個Cell的時候,會觸發(fā)onEndReached方法
先在ListView里添加一個Footer
render() { const FooterView = this.state.loadMore ? <View style={styles.footer}> <Text style=>加載更多...</Text> </View> : null; return <ListView refreshControl={ <RefreshControl refreshing={this.state.refreshing} onRefresh={this._onRefresh.bind(this)} /> } style={[styles.listView]} dataSource={ds.cloneWithRows(this.state.dataSource)} enableEmptySections={true} renderRow={this._renderRow.bind(this)} onEndReachedThreshold={5} onEndReached={this._onEndReached.bind(this)} renderFooter={() => FooterView} /> }
在方法_onEndReached里將Footer顯示出來,在數(shù)據(jù)加載完成之后,再隱藏掉Footer
_onEndReached() { this.setState({ loadMore: true, pageNo: this.state.pageNo + 1 }); this._fetchData(); }
說明
ListView里還設(shè)置了一個參數(shù)onEndReachedThreshold這個參數(shù)與onEndReached配合使用,它的意思是:像素的臨界值,該屬性和onEndReached配合使用,因為onEndReached滑動結(jié)束的標志是以該值作為判斷條件的
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。
新聞標題:react-nativeListView下拉刷新上拉加載實現(xiàn)代碼
網(wǎng)址分享:http://m.newbst.com/article2/jegiic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站導航、App開發(fā)、微信公眾號、營銷型網(wǎng)站建設(shè)、用戶體驗、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)