13 |
public boolean shouldOverrideUrlLoading(WebView view, String url) { |
20 |
public void onLoadResource(WebView view, String url) { |
22 |
super .onLoadResource(view, url); |
26 |
public void onPageFinished(WebView view, String url) { |
28 |
super .onPageFinished(view, url); |
32 |
public void onPageStarted(WebView view, String url, Bitmap favicon) { |
34 |
super .onPageStarted(view, url, favicon); |
38 |
public void doUpdateVisitedHistory(WebView view, String url, boolean isReload) { |
40 |
super .doUpdateVisitedHistory(view, url, isReload); |
44 |
public void onFormResubmission(WebView view, Message dontResend, Message resend) { |
46 |
super .onFormResubmission(view, dontResend, resend); |
51 |
public void onReceivedHttpAuthRequest(WebView view, HttpAuthHandler handler, String host, String realm) { |
53 |
super .onReceivedHttpAuthRequest(view, handler, host, realm); |
57 |
public void onScaleChanged(WebView view, float oldScale, float newScale) { |
59 |
super .onScaleChanged(view, oldScale, newScale); |
63 |
public void onTooManyRedirects(WebView view, Message cancelMsg, Message continueMsg) { |
65 |
super .onTooManyRedirects(view, cancelMsg, continueMsg); |
69 |
public void onUnhandledKeyEvent(WebView view, KeyEvent event) { |
71 |
super .onUnhandledKeyEvent(view, event); |
75 |
public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) { |
87 |
return super .shouldOverrideKeyEvent(view, event); |
90 |
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) { |