У меня есть линейное расположение в ScrollView, я добавил набор ImageButton, который теперь может прокручиваться.Как получить набор видимых ImageButton на экране.
<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>