I was wondering, how to check whether the current ScrollView is scrollable? It seems that, there isn\'t public method called canScroll or isS
ScrollView
canScroll
isS
I think I might be missing something, but shouldn't it be as simple as checking if
scrollView.getHeight() >= parentView.getMeasuredHeight()
you might actually need: scrollView.getChildAt(0).getHeight() and/or parentView.getHeight() instead, but the idea is the same.
scrollView.getChildAt(0).getHeight()
parentView.getHeight()