> It doesn't HAVE to be programmatically it just happens that at the > moment when the user flings the list and then places there finger on > the list it doesn't stop it keep scrolling bit highlights the selected > child in the list.
Ok that's not something you should have to handle. It happens to be a known issue I fixed last week, so it will be made public in whatever next release of Android. > list view has not been set to focusable (it doesnt work even if it > does have a focusable / focusable touch) The ListView should be focusable, it is very wrong to remove the focusability from ListView. > all children are focusable That's your problem. This is what causes the aforementioned bug. When you do this, you need to tell ListView that is children are focusable. -- 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

