[android-developers] Re: using long touch to set a seekbar

2010-10-13 Thread bagelboy
@Kumar, I implemented that and it works like a charm, thanks for the suggestion! -BB On Oct 12, 5:23 pm, Kumar Bibek coomar@gmail.com wrote: ACTION_CANCEL might help you to exit your custom event. On Tue, Oct 12, 2010 at 9:51 PM, bagelboy greg.do...@gmail.com wrote: OK, I solved this

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
Actually, upon further review I think I misunderstood key events, I don't think that approach is right at all. It looks like I will need to use touch events. 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

Re: [android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread Kumar Bibek
ACTION_CANCEL might help you to exit your custom event. On Tue, Oct 12, 2010 at 9:51 PM, bagelboy greg.do...@gmail.com wrote: 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

[android-developers] Re: using long touch to set a seekbar

2010-10-12 Thread bagelboy
@Kumar, many thanks for that useful suggestion, I'll have a look. -BB On Oct 12, 5:23 pm, Kumar Bibek coomar@gmail.com wrote: ACTION_CANCEL might help you to exit your custom event. On Tue, Oct 12, 2010 at 9:51 PM, bagelboy greg.do...@gmail.com wrote: OK, I solved this myself by