How to implement NestedScrolling on Android?
I spent quite a bit of time on this just going through android code trying to figure out what’s going on in NestedScrollView. The following should work. public abstract class ParentOfNestedScrollView extends NestedScrollView{ public ParentOfNestedScrollView(Context context, AttributeSet attrs) { super(context, attrs); } /* Have this return the range you want to scroll to until the … Read more