For your consideration...
Look at what happens on the iPad's virtual keyboard when you hold your finger down (i.e. allow it to linger) for about ~500ms on one of the vowel keys, e.g. [a] on the US keyboard: you get a tooltip-like interactive menu from which you can select a variant form of the letter -a- (umlauted -a-, accented -a-, etc). If you lift your finger from the [a] key that little interactive tooltip disappears; you have to slide onto it to use it.
I'm no ninja javascript coder by any means, and I've got this behavior working on the iPad as a little plug-in that also detects swipe direction and velocity. I don't have an Android tablet to test it out on. I'm sure the guru coders at jquery could do a lot if they tried to exploit this aspect of the touch metaphor. This finger-linger behavior is the touch counterpart to mouse 'hover'.
I would like to see this behavior more widely exploited, if only so my own apps won't seem unconventional :-) With this finger-linger behavior you can have both linger (hover) and tap events attached to the same element, e.g.an image-map AREA. You could display a tooltip when the user lingers on the element and execute other behavior when the user actually taps on it. Lingering on an element would mean "just tell me something about this element -- what it is or what it does". You could also use this behavior to create context-menus.
With the tablet form-factor, applications can be and will be richer than phone-form-factor apps; having this linger behavior at your disposal will allow you to create toolbar buttons that invoke more complex behavior, not just simple navigation, buttons whose functionality may not be self-evident but which the application can explain with a tooltip/balloon help.
Regards
Tim Romano
Swarthmore PA