我针对此问题的完整源代码发布为 Expo 应用程序: https : //exp.host/@kevinoldlifeway/swipe-scrollview-of-webviews 以及 Github https://github.com/kevinold/swipe-scrollview -of-webviews
我正在 React Native 中构建一个书本视图。使用 ScrollView,我想左右滑动以浏览可能有几百到几千个标题的页面。
既然是这种情况,我的目标是只使用最少量的数据,以便用户能够在页面之间滑动,查看前一页和下一页。
我正在加载一个 3 元素数组,如下所示:
[Previous, Current, Next]
这将由 Redux 在 state 中更新(为了简单起见,这里没有使用),并且会重新渲染和重新聚焦列表。
我的目标是我ScrollView
总是在“当前”页面上“居中”。
页面滚动到上一页和下一页由handleScroll
加载适当的预计算数组的方法处理,以便当前页面保持焦点,但上一页和下一页(屏幕外)会适当更新。
handleScroll (event) {
//const x = event.nativeEvent.contentOffset.x;
const { activeIndex, scrollTimes } = this.state;
const windowWidth = Dimensions.get('window').width;
const eventWidth = event.nativeEvent.contentSize.width;
const offset = event.nativeEvent.contentOffset.x;
console.log('event width: ', eventWidth);
console.log('event offset: ', offset);
console.log('scrollTimes: ', scrollTimes);
//if (scrollTimes <= 1 ) return;
if (windowWidth + offset >= eventWidth) {
//ScrollEnd, do sth...
console.log('scrollEnd right (nextPage)', offset);
const nextIndex = activeIndex + 1;
console.log('nextIndex: ', nextIndex);
// Load next page
this.loadMore()
} else if (windowWidth - offset <= eventWidth) {
//ScrollEnd, do sth...
console.log('scrollEnd left (prevPage)', offset);
// Load prev page
this.loadPrev()
}
this.setState({ scrollTimes: scrollTimes + 1 });
}
我尝试使用以下组合来平衡“当前”页面:
contentOffset={{ x: width, y: 0 }}
上ScrollView
和
componentDidMount() {
// Attempt to keep "center" element in array as focused "screen" in the horizontal list view
this.scrollView.scrollTo({ x: width, y: 0, animated: false });
}
我也试过scrollTo
在回调之后this.setState
,但没有任何运气。
我想知道这种“居中”是否可以通过使用Animated
.