I have a layout with scrollView as shown below:
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/transparentLayout"
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@android:color/transparent"
android:orientation="vertical" >
</LinearLayout>
... other views
</ScrollView>
I want to determine if a transparent window ( LinearLayout ) scrolls off screen.
source
share