views:

15

answers:

1

I want to be able to tell if a view is visible in my listview, which is populated by a custom CursorAdapter. How can I do this?

+1  A: 

You can check whether a given position is visible, using getFirstVisiblePosition() and getChildCount().

Romain Guy