Вам необходимо добавить OnScrollListener к RecyclerView
примерно так, и вы можете включить / отключить swipeRefreshLayout, используя видимость первого ребенка RecyclerView
:
myRecyclerView.addOnScrollListener(new OnScrollListener() {
@Override
public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
View firstChild = recyclerView.getChildAt(0);
swipeRefreshLayout.setEnabled(firstChild.getVisibility() == View.VISIBLE);
}
});