IntoTheDeep
IntoTheDeep

Reputation: 4118

Android Webview SwipeRefreshLayout

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

Answers (1)

Mohit Charadva
Mohit Charadva

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

Related Questions