中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ReactNative之FlatList的具體使用方法

發布時間:2020-09-24 19:29:29 來源:腳本之家 閱讀:365 作者:mymdeep 欄目:web開發

之前使用的組件是ListView,當時要添加一個下拉刷新,上拉加載的功能,所以對ListView做了一些封裝,但是后來看官方文檔,不建議再使用ListView,因為效率問題,做過Android的朋友都知道,Android的ListView如果不自己處理一下,也是有效率問題的。所以官方又推出了FlatList,而且自帶上拉下拉的功能。

功能簡介

  1. 完全跨平臺。
  2. 支持水平布局模式。
  3. 行組件顯示或隱藏時可配置回調事件。
  4. 支持單獨的頭部組件。
  5. 支持單獨的尾部組件。
  6. 支持自定義行間分隔線。
  7. 支持下拉刷新。
  8. 支持上拉加載。
  9. 支持跳轉到指定行(ScrollToIndex)。

如果需要分組/類/區(section),請使用SectionList(這個我們會在之后的文章中介紹)

使用

FlatList如果只做簡單使用也是很簡單的,這里我們會分難以程度,逐漸介紹:

直接使用

<FlatList
data={[{key: 'a'}, {key: 'b'}]}
renderItem={({item}) => <Text>{item.key}</Text>}
/>

可以看出跟之前的ListView很像,但是其中少了dataSource,這里,我們只需要傳遞數據,其它的都交給FlatList處理好了。

屬性說明

  1. ItemSeparatorComponent行與行之間的分隔線組件。不會出現在第一行之前和最后一行之后。在這里可以根據需要插入一個view
  2. ListEmptyComponent列表為空時渲染該組件。可以是React Component, 也可以是一個render函數, 或者渲染好的element。
  3. ListFooterComponent尾部組件
  4. ListHeaderComponent頭部組件
  5. columnWrapperStyle如果設置了多列布局(即將numColumns值設為大于1的整數),則可以額外指定此樣式作用在每行容器上。
  6. data為了簡化起見,data屬性目前只支持普通數組。如果需要使用其他特殊數據結構,例如immutable數組,請直接使用更底層的VirtualizedList組件。
  7. extraData如果有除data以外的數據用在列表中(不論是用在renderItem還是Header或者Footer中),請在此屬性中指定。同時此數據在修改時也需要先修改其引用地址(比如先復制到一個新的Object或者數組中),然后再修改其值,否則界面很可能不會刷新。
  8. getItem獲取每個Item
  9. getItemCount獲取Item屬相
  10. getItemLayout是一個可選的優化,用于避免動態測量內容尺寸的開銷,不過前提是你可以提前知道內容的高度。如果你的行高是固定的getItemLayout用起來就既高效又簡單,類似下面這樣:getItemLayout={(data, index) => ( {length: 行高, offset: 行高 * index, index} )}注意如果你指定了SeparatorComponent,請把分隔線的尺寸也考慮到offset的計算之中。
  11. horizontal設置為true則變為水平布局模式。
  12. initialNumToRender指定一開始渲染的元素數量,最好剛剛夠填滿一個屏幕,這樣保證了用最短的時間給用戶呈現可見的內容。注意這第一批次渲染的元素不會在滑動過程中被卸載,這樣是為了保證用戶執行返回頂部的操作時,不需要重新渲染首批元素。
  13. initialScrollIndex指定渲染開始的item index
  14. keyExtractor此函數用于為給定的item生成一個不重復的key。Key的作用是使React能夠區分同類元素的不同個體,以便在刷新時能夠確定其變化的位置,減少重新渲染的開銷。若不指定此函數,則默認抽取item.key作為key值。若item.key也不存在,則使用數組下標。
  15. legacyImplementation設置為true則使用舊的ListView的實現。
  16. numColumns多列布局只能在非水平模式下使用,即必須是horizontal={false}。此時組件內元素會從左到右從上到下按Z字形排列,類似啟用了flexWrap的布局。組件內元素必須是等高的——暫時還無法支持瀑布流布局。
  17. onEndReached當列表被滾動到距離內容最底部不足onEndReachedThreshold的距離時調用。
  18. onEndReachedThreshold決定當距離內容最底部還有多遠時觸發onEndReached回調。注意此參數是一個比值而非像素單位。比如,0.5表示距離內容最底部的距離為當前列表可見長度的一半時觸發。
  19. onRefresh如果設置了此選項,則會在列表頭部添加一個標準的RefreshControl控件,以便實現“下拉刷新”的功能。同時你需要正確設置refreshing屬性。
  20. onViewableItemsChanged在可見行元素變化時調用。可見范圍和變化頻率等參數的配置請設置viewabilityconfig屬性
  21. refreshing在等待加載新數據時將此屬性設為true,列表就會顯示出一個正在加載的符號。
  22. renderItem根據行數據data,渲染每一行的組件。這個參照下面的demo
  23. viewabilityConfig請參考ViewabilityHelper 的源碼來了解具體的配置。

方法

scrollToEnd
滾動到底部。如果不設置getItemLayout
屬性的話,可能會比較卡。

scrollToIndex
滾動到指定index的item
如果不設置getItemLayout
屬性的話,無法跳轉到當前可視區域以外的位置。

scrollToItem
滾動到指定item,如果不設置getItemLayout
屬性的話,可能會比較卡。

scrollToOffset
滾動指定距離

Demo:

import React, {Component} from 'react';
import {
  StyleSheet,
  View,
  FlatList,
  Text,
  Button,
} from 'react-native';

var ITEM_HEIGHT = 100;

export default class FlatListDemo extends Component {

  _flatList;

  _renderItem = (item) => {
    var txt = '第' + item.index + '個' + ' title=' + item.item.title;
    var bgColor = item.index % 2 == 0 ? 'red' : 'blue';
    return <Text style={[{flex:1,height:ITEM_HEIGHT,backgroundColor:bgColor},styles.txt]}>{txt}</Text>
  }

  _header = () => {
    return <Text style={[styles.txt,{backgroundColor:'black'}]}>這是頭部</Text>;
  }

  _footer = () => {
    return <Text style={[styles.txt,{backgroundColor:'black'}]}>這是尾部</Text>;
  }

  _separator = () => {
    return <View style={{height:2,backgroundColor:'yellow'}}/>;
  }

  render() {
    var data = [];
    for (var i = 0; i < 100; i++) {
      data.push({key: i, title: i + ''});
    }

    return (
      <View style={{flex:1}}>
        <Button title='滾動到指定位置' onPress={()=>{
          //this._flatList.scrollToEnd();
          //this._flatList.scrollToIndex({viewPosition:0,index:8});
          this._flatList.scrollToOffset({animated: true, offset: 2000});
        }}/>
        <View style={{flex:1}}>
          <FlatList
            ref={(flatList)=>this._flatList = flatList}
            ListHeaderComponent={this._header}
            ListFooterComponent={this._footer}
            ItemSeparatorComponent={this._separator}
            renderItem={this._renderItem}

            //numColumns ={3}
            //columnWrapperStyle={{borderWidth:2,borderColor:'black',paddingLeft:20}}

            //horizontal={true}

            //getItemLayout={(data,index)=>(
            //{length: ITEM_HEIGHT, offset: (ITEM_HEIGHT+2) * index, index}
            //)}

            //onEndReachedThreshold={5}
            //onEndReached={(info)=>{
            //console.warn(info.distanceFromEnd);
            //}}

            //onViewableItemsChanged={(info)=>{
            //console.warn(info);
            //}}
            data={data}>
          </FlatList>
        </View>

      </View>
    );
  }
}

const styles = StyleSheet.create({
  txt: {
    textAlign: 'center',
    textAlignVertical: 'center',
    color: 'white',
    fontSize: 30,
  }
});

效果圖:

ReactNative之FlatList的具體使用方法

進階使用

在這里我準備了一份代碼示例:

const {width,height}=Dimensions.get('window')
export default class Main extends Component{
  // 構造
  constructor(props) {
    super(props);
  }
  refreshing(){
    let timer = setTimeout(()=>{
          clearTimeout(timer)
          alert('刷新成功')
        },1500)
  }
  _onload(){
    let timer = setTimeout(()=>{
      clearTimeout(timer)
      alert('加載成功')
    },1500)
  }
  render() {
    var data = [];
    for (var i = 0; i < 100; i++) {
      data.push({key: i, title: i + ''});
    }

    return (
      <View style={{flex:1}}>
        <Button title='滾動到指定位置' onPress={()=>{
          this._flatList.scrollToOffset({animated: true, offset: 2000});
        }}/>
        <View style={{flex:1}}>
          <FlatList
            ref={(flatList)=>this._flatList = flatList}
            ListHeaderComponent={this._header}
            ListFooterComponent={this._footer}
            ItemSeparatorComponent={this._separator}
            renderItem={this._renderItem}
            onRefresh={this.refreshing}
            refreshing={false}
            onEndReachedThreshold={0}
            onEndReached={
              this._onload
            }
            numColumns ={3}
            columnWrapperStyle={{borderWidth:2,borderColor:'black',paddingLeft:20}}

            //horizontal={true}

            getItemLayout={(data,index)=>(
            {length: 100, offset: (100+2) * index, index}
            )}

            data={data}>
          </FlatList>
        </View>

      </View>
    );
  }


  _renderItem = (item) => {
    var txt = '第' + item.index + '個' + ' title=' + item.item.title;
    var bgColor = item.index % 2 == 0 ? 'red' : 'blue';
    return <Text style={[{flex:1,height:100,backgroundColor:bgColor},styles.txt]}>{txt}</Text>
  }

  _header = () => {
    return <Text style={[styles.txt,{backgroundColor:'black'}]}>這是頭部</Text>;
  }

  _footer = () => {
    return <Text style={[styles.txt,{backgroundColor:'black'}]}>這是尾部</Text>;
  }

  _separator = () => {
    return <View style={{height:2,backgroundColor:'yellow'}}/>;
  }


}
const styles=StyleSheet.create({
  container:{

  },
  content:{
    width:width,
    height:height,
    backgroundColor:'yellow',
    justifyContent:'center',
    alignItems:'center'
  },
  cell:{
    height:100,
    backgroundColor:'purple',
    alignItems:'center',
    justifyContent:'center',
    borderBottomColor:'#ececec',
    borderBottomWidth:1

  },
  txt: {
    textAlign: 'center',
    textAlignVertical: 'center',
    color: 'white',
    fontSize: 30,
  }

})

運行效果如下:

ReactNative之FlatList的具體使用方法

總結

總體來說Flatlist還是比ListView用起來方便的,而且提供的功能更多。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

佛坪县| 东山县| 水城县| 泾阳县| 铁力市| 都江堰市| 红桥区| 方正县| 临沧市| 乌审旗| 无锡市| 桃园县| 余干县| 呼图壁县| 湖北省| 尚志市| 淅川县| 文化| 新蔡县| 江孜县| 卓资县| 汶上县| 湛江市| 区。| 五峰| 伊川县| 邵武市| 定南县| 巴中市| 新源县| 子长县| 武隆县| 靖安县| 沧州市| 达日县| 永胜县| 广水市| 舞钢市| 涿州市| 稻城县| 巴彦县|