I have linear layout in a ScrollView, I have added a set of ImageButton which can now scroll. How do I get the set of visible ImageButton on the screen.
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="250dp"
android:scrollbars="none"
android:id="@+id/scrollview">
<LinearLayout
android:id="@+id/layout"
android:orientation="vertical"
android:layout_height="250dp"
android:layout_width="match_parent">
</LinearLayout>
</ScrollView>