I have a ScrollView which holds a series of Views. I would like to be able to determine if a view is currently visible (if any part of it is curre
I faced the same problem today. While Googling and reading Android reference I found this post and a method I ended up using instead;
public final boolean getLocalVisibleRect (Rect r)
Nice of them not to only providing Rect but also boolean indicating if View visible at all. On negative side this method is undocumented :(