我已阅读github page Android-ParallaxViewPager 关于使用ScrollView实现它但我不明白其实际含义! :(
这是github页面上给出的内容 -
How to implement? see below.
1. Change ListView in NotBoringActionBar to ViewPager.
2. Make ListView or ScrollView of Fragment in ViewPager.
3. Make Interface that Activity can get a Listener when you use OnScroll() in ListView or ScrollView.
4. Make Interface which is available to scroll when some events is happened in ListView or ScrollView.
From now on, you can fix scrollY value in ListView wherever the pages are swiped through the interface you've just made.
任何人都可以帮我吗?我确信我并不是唯一一个尝试使用ScrollView
。
在其代码kmshack中使用了onScroll()
方法接受AbsListView view
作为参数的接口。(用于处理ListView
内的滚动事件)
这是否意味着ScrollView
onScroll()
方法应该接受ScrollView
来处理ScrollView
内的滚动事件?
或者必须定义一个方法来处理滚动事件?
我很困惑!请帮帮我。