Home | History | Annotate | Download | only in webkit

Lines Matching refs:WebView

28      * url is about to be loaded in the current WebView. If WebViewClient is not
29 * provided, by default WebView will ask Activity Manager to choose the
32 * current WebView handles the url.
34 * @param view The WebView that is initiating the callback.
36 * @return True if the host application wants to leave the current WebView
39 public boolean shouldOverrideUrlLoading(WebView view, String url) {
50 * @param view The WebView that is initiating the callback.
55 public void onPageStarted(WebView view, String url, Bitmap favicon) {
62 * new Picture, use {@link WebView.PictureListener#onNewPicture}.
64 * @param view The WebView that is initiating the callback.
67 public void onPageFinished(WebView view, String url) {
71 * Notify the host application that the WebView will load the resource
74 * @param view The WebView that is initiating the callback.
75 * @param url The url of the resource the WebView will load.
77 public void onLoadResource(WebView view, String url) {
86 * @param view The WebView that is initiating the callback.
89 * @deprecated This method is no longer called. When the WebView encounters
92 public void onTooManyRedirects(WebView view, Message cancelMsg,
133 * @param view The WebView that is initiating the callback.
138 public void onReceivedError(WebView view, int errorCode,
147 * @param view The WebView that is initiating the callback.
151 public void onFormResubmission(WebView view, Message dontResend,
159 * @param view The WebView that is initiating the callback.
163 public void doUpdateVisitedHistory(WebView view, String url,
174 * @param view The WebView that is initiating the callback.
179 public void onReceivedSslError(WebView view, SslErrorHandler handler,
188 * @param view The WebView that is initiating the callback.
194 public void onReceivedHttpAuthRequest(WebView view,
202 * true, WebView will not handle the key event. If return false, WebView
206 * @param view The WebView that is initiating the callback.
211 public boolean shouldOverrideKeyEvent(WebView view, KeyEvent event) {
216 * Notify the host application that a key was not handled by the WebView.
217 * Except system keys, WebView always consumes the keys in the normal flow
222 * @param view The WebView that is initiating the callback.
225 public void onUnhandledKeyEvent(WebView view, KeyEvent event) {
229 * Notify the host application that the scale applied to the WebView has
232 * @param view he WebView that is initiating the callback.
236 public void onScaleChanged(WebView view, float oldScale, float newScale) {