在FlatList(和ScrollView)中锁定滚动位置

时间:2017-06-02 15:54:25

标签: react-native scrollview

我正在尝试创建一个FlatList,使当前滚动位置保持锁定状态,并且不会被插入列表顶部的新项目更改。

我创建了一个expo snack来展示我的意图。

小吃呈现带有绿色物品的ScrollView,最后是黑色物品。 当应用程序启动时,它会滚动到列表的底部。五秒钟后,顶部插入了10个项目,滚动位置根据这些项目的总大小而变化。

这是世博小吃的代码:

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

const renderItem = ({ item }) => {
  let backgroundColor;
  if (item == 10) {
    backgroundColor = "black"
  }
  else {
    backgroundColor = item % 2 == 0 ? 'green' : 'blue'
  }

  return (
    <View
      style={{
        width: 200,
        height: 50,
        backgroundColor,
        margin: 10,
      }}
    />
  );
};

const MyList = class extends Component {
  componentDidMount() {
    setTimeout(() => this.ref.scrollToEnd({ animated: false }), 500);
  }
  render() {
    return (
      <FlatList
        ref={r => this.ref = r}
        data={this.props.data}
        renderItem={this.props.renderItem}
      />
    );
  }
};

export default class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      items: [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10],
    };
  }

  componentDidMount() {
    const items = [...this.state.items];
    items.unshift(1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
    setTimeout(() => this.setState({ items }), 5000);
  }

  render() {
    return <MyList renderItem={renderItem} data={this.state.items} />;
  }
}

我想保持滚动位置锁定,这意味着 - 当插入项目时,滚动位置不会改变(或者至少在某种程度上用户不知道发生了什么)

有没有办法用FlatList和ScrollView的当前API做到这一点?为实现此功能需要实施什么?

2 个答案:

答案 0 :(得分:0)

您应该使用componentDidUpdate()来实现。

componentDidUpdate(prevProps, prevState) {
  if(prevProps.data != this.props.data) {
    this.ref.scrollToEnd({ animated: false });
  }
}

将此添加到MyList组件中。当组件收到新的props.data而不是当前的props.data时,它将调用scrollToEnd。

这可能有帮助!

答案 1 :(得分:-1)

您是否尝试过使用keyExtractor? (https://facebook.github.io/react-native/releases/next/docs/flatlist.html#keyextractor)。

可能有助于避免重新渲染,因此请尝试为每个项目使用唯一键。