I want to check if a View within a ScrollView is currently visible in Android. I am not checking if it is focused on yet but if it is currently bei
View
ScrollView
try
if(view.isShown()) { // Visible } else { // Invisible }