-
-
Save jezinka/aef1796ee83c89c3e0689f7c52351bdf to your computer and use it in GitHub Desktop.
refreshLayout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| swipeRefreshLayout = findViewById(R.id.swiperefresh); | |
| swipeRefreshLayout.setOnRefreshListener( | |
| new SwipeRefreshLayout.OnRefreshListener() { | |
| @Override | |
| public void onRefresh() { | |
| sendQueryForData(); | |
| } | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment