Is there a simple way to have the scrollbar in ScrollView only visible if the view is scrollable?
I know it's possible to achieve this by comparing the height of the ScrollView and the ViewGroup inside it and then calling ScrollView.setScrollbarFadingEnabled(false);
but it's a lot of overhead and i feel like there should be a simpler and cleaner way.