30

我正在尝试在 React Native for Android 中使用水平 ScrollView,其中起始位置位于滚动图像的中间,而不是 (0,0)。

scrollTo方法似乎在内部被正确调用,componentDidMount但应用程序中没有任何移动,它仍然显示为一直向左滚动。

根据文档,由于这是 Android,我无法访问 contentOffset 道具,或者我会直接设置它。这是代码:

'use strict';

var React = require('react-native');
var {
  StyleSheet,
  View,
  Text,
  ScrollView,
  Component,
} = React;
var precomputeStyle = require('precomputeStyle');

class Carousel extends Component {
  constructor(props, context) {
    super(props, context);
    //this.changeContent = this.changeContent.bind(this);
  }

  componentDidMount() {
    this.myScroll.scrollTo(100);
    console.log("called DidMount");
  }

  render() {
    return (
      <View style={{flex: 1}}>
        <ScrollView ref={(ref) => this.myScroll = ref}
          contentContainerStyle={styles.container}
          horizontal={true}
          pagingEnabled={true}
          showsHorizontalScrollIndicator={false}
          bounces={true}
          onMomentumScrollEnd={this.onAnimationEnd}
        >
          {this.props.children}
        </ScrollView>
      </View>
    );
  }

  onAnimationEnd(e) {
    console.log("curr offset: " + e.nativeEvent.contentOffset.x);
  }
}

var styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
  },
  page: {
    alignItems: 'center',
    justifyContent: 'center',
    borderWidth: 1,
  },
});

module.exports = Carousel;
4

5 回答 5

47

我遇到了同样的问题,浪费了几个小时:

  • 1:在android中,ScrollView只有在size < content's size时才能滚动

  • 2:在react native android中,如果在componentDidMount中调用ScrollView.scrollTo()是不行的,因为ScrollView在创建的时候有布局动画,可以在ReactScrollView.java中找到

protected void onLayout(boolean changed, int l, int t, int r, int b) {
    // Call with the present values in order to re-layout if necessary
    scrollTo(getScrollX(), getScrollY());
}

所以,你必须在动画之后延迟它

componentDidMount() {
    InteractionManager.runAfterInteractions(() => {
      this.myScroll.scrollTo(100);
        console.log("called DidMount");
    })  
}
于 2016-01-06T03:46:29.937 回答
26

我想避免使用延迟和计时器,所以经过一番挖掘后,我发现使用onLayout非常顺利:

scrollToInitialPosition = () => {
  this.scrollViewRef.scrollTo({ y: 100 });
}
...
<ScrollView
  ref={(ref) => { this.scrollViewRef = ref; }}
  onLayout={this.scrollToInitialPosition}
/>
于 2019-01-22T14:28:26.563 回答
22

这适用于 React Native 0.44.0。感谢@Eldelshell 的提示。它似乎也适用于任何超时值。至少在模拟器上。我发现涉及的答案InteractionManager.runAfterInteractions没有解决问题,但也许这是版本的不同。

componentDidMount() {
  setTimeout(() => {
    this._scroll.scrollTo({y: 100})
  }, 1)
}
于 2017-05-28T18:47:40.427 回答
0

我认为应该有一个更现代的钩子版本:

const MyComponent = (props) => {

 const componentRef = useRef(null)

 // this is the same as useEffect but only runs after finishing rendering
  useLayoutEffect(() => {

    // unlike class examples, the actual ref is stored in the current property
    scrollViewRef.current.scrollTo({ y: 100 })

    // this empty because we don't care about any other variables, 
    // if you add other stuff into this function, 
    // you'll have to add any hook based variables into this array
  }, [])

 // ditto about current here:
 return (
   <ScrollView ref={(ref) => (componentRef.current = ref)}>
    {...}
   </ScrollView>)

}
于 2021-02-12T18:40:57.317 回答
-1

感谢@David Nathan,InteractionManager为我使用作品。
另请注意,不像setTimeout,runAfterInteractions不会延迟活动动画。

来自InteractionManager 文档

于 2019-08-07T05:40:42.440 回答