I am trying to do some task NOT REFRESH when I am pulling a recyclerView, but the problem is it's showing the reload icon. I don't want to show that. I try to hide that in this way:
swipeRefreshLayout.setColorSchemeColors(0,0,0,0);
swipeRefreshLayout.setProgressBackgroundColor(android.R.color.transparent);
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
// Refresh items
}
});
But it still showing a round circle with shadow. How can I detect pulling in a recylerview using Swiperefreshlayout (with out progress icon) or any other way?