React Native - 如何从ScrollView获取Y偏移值视图?

时间:2018-06-01 09:09:41

标签: javascript react-native uiscrollview scrollview

我正在尝试获取视图的滚动位置。但 Y偏移到页面的值与视图的位置无关。

ScrollView层次结构:

<ScrollView>
  - MyComponent1
  - MyComponent2
    - SubView1
       - SubView2
         - <View> (Added ref to this view and passing Y offset value through props)
  - MyComponent3
 </ScrollView>

SubView2组件:

this.myComponent.measure( (fx, fy, width, height, px, py) => {
   console.log('Component width is: ' + width)
   console.log('Component height is: ' + height)
   console.log('X offset to frame: ' + fx)
   console.log('Y offset to frame: ' + fy)
   console.log('X offset to page: ' + px)
   console.log('Y offset to page: ' + py)

   this.props.moveScrollToParticularView(py)
})

<View ref={view => { this.myComponent = view; }}>

我已经检查了SubView2方法onScroll视图的确切位置。但确实与measure value匹配。我可以弄清楚measure value是错的。

是ScrollView层次结构问题吗?

1 个答案:

答案 0 :(得分:6)

View组件有一个名为onLayout的属性。您可以使用此属性来获取该组件的位置。

  

<强> onLayout

     

使用以下命令在安装和布局更改时调用:

{nativeEvent: { layout: {x, y, width, height}}}
     

计算布局后立即触发此事件,   但是新的布局可能还没有反映在屏幕上   收到事件,尤其是布局动画时   进展。

<强>更新

onLayout prop为父组件提供一个位置。这意味着要找到SubView2的位置,您需要获得所有父组件的总和(MyComponent2 + SubView1 + SubView2)。

<强>示例

export default class App extends Component {
  state = {
    position: 0,
  };
  _onLayout = ({ nativeEvent: { layout: { x, y, width, height } } }) => {
    this.setState(prevState => ({
      position: prevState.position + y
    }));
  };
  componentDidMount() {
    setTimeout(() => {
      // This will scroll the view to SubView2
      this.scrollView.scrollTo({x: 0, y: this.state.position, animated: true})
    }, 5000);
  }
  render() {
    return (
      <ScrollView style={styles.container} ref={(ref) => this.scrollView = ref}>
        <View style={styles.view}>
          <Text>{'MyComponent1'}</Text>
        </View>
        <View style={[styles.view, { backgroundColor: 'blue'}]} onLayout={this._onLayout}>
          <Text>{'MyComponent2'}</Text>
          <View style={[styles.view, , { backgroundColor: 'green'}]} onLayout={this._onLayout}>
            <Text>{'SubView1'}</Text>
            <View style={[styles.view, { backgroundColor: 'yellow'}]} onLayout={this._onLayout}>
              <Text>{'SubView2'}</Text>
            </View>
          </View>
        </View>
      </ScrollView>
    );
  }
}