When the user presses on the screen during a fling it stops the screen. This is how list view and other scrolling containers have always working in Android since 1.0.
On Tue, May 10, 2011 at 12:07 AM, Omar Adobati <[email protected]>wrote: > than to all the guys who have been replying to me, > > So, I have understood I can't limit the speed the fling scroll, but it > would be at least possible to stop the scroll when I do touch the list? As I > wrote, when I do perform a scroll that then come up to be a "fling" my list > scroll to the top or the bottom (depending by the direction I do the > movement) without having the chance to stop it. > > Thanks, > > Omar > > > On Tue, May 10, 2011 at 07:27, Romain Guy <[email protected]> wrote: > >> This API is used by the calendar view in the Calendar application to let >> you scroll more precisely from week to week. It is a very It is true however >> that you should avoid changing the friction in "regular" lists. Your >> application should behave and feel the same to he user as any other >> application. It makes sense for a calendar view because it does not look >> like a ListView, the ListView is just an implementation detail. >> >> >> On Mon, May 9, 2011 at 10:23 PM, Dianne Hackborn <[email protected]>wrote: >> >>> Oh well look at that... didn't know Romain added that to HC. Hm. Not >>> sure I'm thrilled about it. :) >>> >>> On Mon, May 9, 2011 at 5:12 PM, Jona <[email protected]> wrote: >>> >>>> I haven't tested this but API 11 supports friction. See: >>>> >>>> http://developer.android.com/reference/android/widget/AbsListView.html#setFriction(float) >>>> >>>> Moto >>>> >>>> On May 9, 2:36 pm, Dianne Hackborn <[email protected]> wrote: >>>> > ListView already limits its fling speed; you shouldn't change it to >>>> behave >>>> > differently than it does everywhere else in the UI. >>>> > >>>> > On Mon, May 9, 2011 at 12:03 PM, Omar Adobati <[email protected] >>>> >wrote: >>>> > >>>> > >>>> > >>>> > >>>> > >>>> > > Hi Everyone, >>>> > >>>> > > I would like to knoe if I can limit the speed of the fling gestures >>>> in my >>>> > > ListActivity and if it is possible to stop the "scrolling" of the >>>> same list >>>> > > when I touch it. >>>> > >>>> > > My current situation is the following: If I perform a vertical >>>> scroll that >>>> > > trigers the Fling state, sometimes (often actually) my List View >>>> scrolls >>>> > > full speed to the bottom (or to the top) and dose't stop till it >>>> reaches the >>>> > > final position. This is not really user friendly... is there a way >>>> to limit >>>> > > it? >>>> > >>>> > > I have already tried with setFastScrollEnabled(false); but it seems >>>> to >>>> > > don't work. >>>> > >>>> > > Thanks to everyone who would like to help. >>>> > >>>> > > -- >>>> > > You received this message because you are subscribed to the Google >>>> > > Groups "Android Developers" group. >>>> > > To post to this group, send email to >>>> [email protected] >>>> > > To unsubscribe from this group, send email to >>>> > > [email protected] >>>> > > For more options, visit this group at >>>> > >http://groups.google.com/group/android-developers?hl=en >>>> > >>>> > -- >>>> > Dianne Hackborn >>>> > Android framework engineer >>>> > [email protected] >>>> > >>>> > Note: please don't send private questions to me, as I don't have time >>>> to >>>> > provide private support, and so won't reply to such e-mails. All such >>>> > questions should be posted on public forums, where I and others can >>>> see and >>>> > answer them. >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Android Developers" group. >>>> To post to this group, send email to >>>> [email protected] >>>> To unsubscribe from this group, send email to >>>> [email protected] >>>> For more options, visit this group at >>>> http://groups.google.com/group/android-developers?hl=en >>>> >>> >>> >>> >>> -- >>> Dianne Hackborn >>> Android framework engineer >>> [email protected] >>> >>> Note: please don't send private questions to me, as I don't have time to >>> provide private support, and so won't reply to such e-mails. All such >>> questions should be posted on public forums, where I and others can see and >>> answer them. >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Android Developers" group. >>> To post to this group, send email to [email protected] >>> To unsubscribe from this group, send email to >>> [email protected] >>> For more options, visit this group at >>> http://groups.google.com/group/android-developers?hl=en >> >> >> >> >> -- >> Romain Guy >> Android framework engineer >> [email protected] >> >> Note: please don't send private questions to me, as I don't have time to >> provide private support. All such questions should be posted on public >> forums, where I and others can see and answer them >> >> -- >> You received this message because you are subscribed to the Google >> Groups "Android Developers" group. >> To post to this group, send email to [email protected] >> To unsubscribe from this group, send email to >> [email protected] >> For more options, visit this group at >> http://groups.google.com/group/android-developers?hl=en >> > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- Dianne Hackborn Android framework engineer [email protected] Note: please don't send private questions to me, as I don't have time to provide private support, and so won't reply to such e-mails. All such questions should be posted on public forums, where I and others can see and answer them. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

