Make your own implementation of SwipeRefreshLayout and override the canChildScrollUp in this way:
@Override
public boolean canChildScrollUp() {
if (scrollView != null)
return scrollView.canScrollVertically(-1);
return false;
}
just replace with any subclass of ScrollView.