İlk olarak activity dosyasını aç ve webview i aşağıdaki gibi swipe araına koy
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/swipeContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/web"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</WebView>
</android.support.v4.widget.SwipeRefreshLayout>
Data sonra java dosyanı aç ve aşagıdaki kodu oncreate içinde yaz aşağı çekerek yenileme çalışacaktır.
final SwipeRefreshLayout swipeContainer = (SwipeRefreshLayout) findViewById(R.id.swipeContainer)
swipeContainer.setOnRefreshListener(new OnRefreshListener() {
@Override
public void onRefresh() {
//buraya yenileme kodunu yaz
swipeContainer.setRefreshing(false);
}
});