As we know that scroll view will scroll,if the child view height is more than the height of the scroll view...if the child view height is small or equal to height of the scroll view height then the scroll view is not scrollable. Is there any way to detect whether the scroll view is scrollable or not?.
<com.customerfirst.utilities.LockableVerScroll
android:id="@+id/horizontalScrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="vertical" >
<LinearLayout
android:id="@+id/ll_questions"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:splitMotionEvents="false"
android:orientation="vertical"
>
</LinearLayout>
</com.customerfirst.utilities.LockableVerScroll>
need help thanks in advance..!!