6 Comparison of different Android scrolling techniques
Comparison of 6 different scrolling techniques on Android.
Each screen in the demo includes a fixed header and footer, and a list of items between the two that you want to scroll:
1) Android native ListView
2) LinearLayout including a native header and footer, and a list of HTML items in a WebView between the two (hybrid solution, it is the Android system which manages the scroll)
3) WebView calling an HTML5 page, scrolling is managed in CSS3
4) WebView calling an HTML5 page, scrolling is managed by the iScroll4 Javascript library
5) WebView calling an HTML5 page, scrolling is managed by the Javascript Scrollability library
6) WebView calling an HTML5 page, scrolling is managed by the TouchSCroll Javascript library
Read more