我正在尝试获取视图的滚动位置。但 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层次结构问题吗?
答案 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>
);
}
}