OK, I solved this myself by attaching an onTouchListener to each
button and listening for ACTION_DOWN and ACTION_UP events. the only
problem is that if a user moves their finger off the button while
holding it the ACTION_UP event is lost. This doesn't seem to be a
major problem as all they have to do is tap the button again to stop,
but if it gives any trouble I'll simply have to add a generic
ACTION_UP listener.

Hope this is useful to someone,
-BB

On Oct 12, 11:25 am, bagelboy <greg.do...@gmail.com> wrote:
> I have an app that uses seekbars with buttons on either side for fine
> adjustments. Right now I use simple onclick events for the buttons,
> every click changes the seekbar 1 unit.
>
> What I would like to do is use a long press to quickly scroll, so if a
> user holds down a button for say 800 millis it will start adding ten
> units per second.
>
> What I'm thinking my approach should be is to use onKeyDown and
> onKeyUp events, but is there a better way? OnLongClickListener won't
> work as far as I can tell because it doesn't detect key-up.
>
> Is my approach correct?
>
> Thanks!
> -BB

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to