I have nested calendarview in ScrollView
. My problem begins when height of view increases.
I can scroll calendar months vertically but when scrollview
Here's one solution, you can implement a custom ScrollView which will only intercept verticale swipe.
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {...}
"onInterceptTouchEvent" will return false for horizontal swipe, so horizontal swipe will be enable for the CalendarView.
You can read more about this heree : https://stackoverflow.com/a/2655740/5158173