Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing horizontal/vertical finger swipe scrolling in android honeycomb webview/webkit?

Tags:

I am planning to implement Honeycomb tablet application based on WebView (so, basically it'll be a HTML5 web based application made only for tablet).

I am looking to implement horizontal and vertical scrolling by swiping finger. For better understanding I created sample outline.

Horizontal Scrolling by Swiping


This image shows something similar to Honeycomb's native setting activity with left and right page vertically scrollable Vertical Scrolling by Swiping

Any kind of guides or resources are welcome. Thanks

like image 458
Hossain Khan Avatar asked Oct 10 '11 15:10

Hossain Khan


3 Answers

Take a look at iScroll:

iScroll 4 is a complete rewrite of the original iScroll code. The script development began because mobile webkit (on iPhone, iPad, Android) does not provide a native way to scroll content inside a fixed width/height element. This unfortunate situation prevents any web-app to have a position:absolute header and/or footer and a scrolling central area for contents.

While latest Android revisions are supporting this functionality (although support is not optimal), Apple seems reluctant to add one finger scrolling to divs...

like image 116
shaunix Avatar answered Dec 12 '22 21:12

shaunix


Here is what I have found so far:

It depends on how you want to implement scrolling. If you want to attached swiping event, thats the easiest way to implement using well known libraries:

  • jqTouch - It has swipe left and right event which can be hooked to scroll left or right (it seems all the webkit based animations work only on iOS devices). Please note that project is still in beta and not highly active. EDIT: this is also part of Sencha Labs - who actively maintains Sencha Touch.
  • Sencha Touch - They have better support for almost everything in mobile and tablet. (Note: It's free for opensource apps but not for commercial apps - EDIT: they actually have commercial license. see their site for more info on licensing)
  • jQueryMobile - They are very stable (in RC1 as of now), and has swipe left and right event, but I could not find swipe up or down. If you just need swipe left right, tap, tap hold, then go with jQM. They have the best community support.
  • RAW JS - Finally, if you want something raw javascript, visit HTML5Rocks article to have better in-depth idea about how touch event works.

I hope it helps. I'm still struggling to implement scroll up down, since I don't want to wait for swipe to end, instead I am trying to implement instant scroll feedback, getting very close using RAW JS coordinates, but not satisfactory.

like image 44
Hossain Khan Avatar answered Dec 12 '22 23:12

Hossain Khan


Hammer JS has been useful for me:

http://eightmedia.github.io/hammer.js/

like image 27
Ian Jamieson Avatar answered Dec 12 '22 22:12

Ian Jamieson