Reputation: 4118
Is it possible to refresh WebView
current page using SwipeRefreshLayout
? If it is can you show me how to do that?
Upvotes: 2
Views: 421
Reputation: 2613
Wrap your webview
inside SwipeRefreshLayout and override the onRefresh()
method of SwipeRefreshLayout.
In onRefresh() method you can do whatever you want.
Upvotes: 2