Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SwipeRefreshLayout #492

Open
baiseng opened this issue Dec 14, 2018 · 0 comments
Open

SwipeRefreshLayout #492

baiseng opened this issue Dec 14, 2018 · 0 comments

Comments

@baiseng
Copy link

baiseng commented Dec 14, 2018

I have a requirement that SwipeRefreshLayout only request the network once in five minutes. But after interception, the loading progress circle keeps turning. I want to close the loading progress circle after successful interception.How can I solve it?

RxSwipeRefreshLayout.refreshes(refreshLayout)
.throttleFirst(5,TimeUnit.MINUTES)
.subscribe(o -> {
Toast.makeText(getActivity(),"Network requesting",Toast.LENGTH_SHORT).show();
refreshLayout.setRefreshing(false);
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant