blob: 671ef37f4d5dfa14924b4fa6d782180b36248450 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.webkit;
18
Nate Fischer3442c742017-09-08 17:02:00 -070019import android.annotation.Nullable;
Ignacio Solla451e3382014-11-10 10:35:54 +000020import android.annotation.SystemApi;
Selim Gurun48f6c452014-07-18 16:23:46 -070021import android.content.Intent;
Derek Sollenberger7ab3d672011-06-01 14:45:05 -040022import android.content.pm.ActivityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023import android.graphics.Bitmap;
Leon Scroggins70ca3c22009-10-02 15:58:55 -040024import android.net.Uri;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import android.os.Message;
Andrei Popescu6fa29582009-06-19 14:54:09 +010026import android.view.View;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080027
28public class WebChromeClient {
29
30 /**
31 * Tell the host application the current progress of loading a page.
32 * @param view The WebView that initiated the callback.
33 * @param newProgress Current page loading progress, represented by
34 * an integer between 0 and 100.
35 */
36 public void onProgressChanged(WebView view, int newProgress) {}
37
38 /**
39 * Notify the host application of a change in the document title.
40 * @param view The WebView that initiated the callback.
41 * @param title A String containing the new title of the document.
42 */
43 public void onReceivedTitle(WebView view, String title) {}
44
45 /**
46 * Notify the host application of a new favicon for the current page.
47 * @param view The WebView that initiated the callback.
48 * @param icon A Bitmap containing the favicon for the current page.
49 */
50 public void onReceivedIcon(WebView view, Bitmap icon) {}
51
52 /**
Patrick Scott2ba12622009-08-04 13:20:05 -040053 * Notify the host application of the url for an apple-touch-icon.
54 * @param view The WebView that initiated the callback.
55 * @param url The icon url.
Nate Fischer0a6140d2017-09-05 12:37:49 -070056 * @param precomposed {@code true} if the url is for a precomposed touch icon.
Patrick Scott2ba12622009-08-04 13:20:05 -040057 */
Patrick Scottd58ccff2009-09-18 16:29:00 -040058 public void onReceivedTouchIconUrl(WebView view, String url,
59 boolean precomposed) {}
Patrick Scott2ba12622009-08-04 13:20:05 -040060
61 /**
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010062 * A callback interface used by the host application to notify
63 * the current page that its custom view has been dismissed.
Andrei Popescu6fa29582009-06-19 14:54:09 +010064 */
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010065 public interface CustomViewCallback {
66 /**
67 * Invoked when the host application dismisses the
68 * custom view.
69 */
70 public void onCustomViewHidden();
71 }
72
73 /**
Ignacio Solla7a4e18f2014-12-29 12:21:52 +000074 * Notify the host application that the current page has entered full
75 * screen mode. The host application must show the custom View which
76 * contains the web contents — video or other HTML content —
77 * in full screen mode. Also see "Full screen support" documentation on
Kristian Monsen0e0b2da2013-04-10 13:43:43 -070078 * {@link WebView}.
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010079 * @param view is the View object to be shown.
Ignacio Solla7a4e18f2014-12-29 12:21:52 +000080 * @param callback invoke this callback to request the page to exit
81 * full screen mode.
Andrei Popescu3c946a1a2009-07-03 08:20:53 +010082 */
83 public void onShowCustomView(View view, CustomViewCallback callback) {};
Andrei Popescu6fa29582009-06-19 14:54:09 +010084
85 /**
86 * Notify the host application that the current page would
Derek Sollenberger7ab3d672011-06-01 14:45:05 -040087 * like to show a custom View in a particular orientation.
88 * @param view is the View object to be shown.
89 * @param requestedOrientation An orientation constant as used in
90 * {@link ActivityInfo#screenOrientation ActivityInfo.screenOrientation}.
91 * @param callback is the callback to be invoked if and when the view
92 * is dismissed.
Kristian Monsen0e0b2da2013-04-10 13:43:43 -070093 * @deprecated This method supports the obsolete plugin mechanism,
94 * and will not be invoked in future
Derek Sollenberger7ab3d672011-06-01 14:45:05 -040095 */
Kristian Monsen0e0b2da2013-04-10 13:43:43 -070096 @Deprecated
Derek Sollenberger7ab3d672011-06-01 14:45:05 -040097 public void onShowCustomView(View view, int requestedOrientation,
98 CustomViewCallback callback) {};
Jonathan Dixon3a5cf382013-07-27 15:37:31 -070099
Derek Sollenberger7ab3d672011-06-01 14:45:05 -0400100 /**
Ignacio Solla7a4e18f2014-12-29 12:21:52 +0000101 * Notify the host application that the current page has exited full
102 * screen mode. The host application must hide the custom View, ie. the
103 * View passed to {@link #onShowCustomView} when the content entered fullscreen.
104 * Also see "Full screen support" documentation on {@link WebView}.
Andrei Popescu6fa29582009-06-19 14:54:09 +0100105 */
106 public void onHideCustomView() {}
107
108 /**
Steve Block89e00a92011-08-03 15:24:43 +0100109 * Request the host application to create a new window. If the host
Nate Fischer0a6140d2017-09-05 12:37:49 -0700110 * application chooses to honor this request, it should return {@code true} from
Steve Block89e00a92011-08-03 15:24:43 +0100111 * this method, create a new WebView to host the window, insert it into the
112 * View system and send the supplied resultMsg message to its target with
113 * the new WebView as an argument. If the host application chooses not to
Nate Fischer0a6140d2017-09-05 12:37:49 -0700114 * honor the request, it should return {@code false} from this method. The default
115 * implementation of this method does nothing and hence returns {@code false}.
Steve Block89e00a92011-08-03 15:24:43 +0100116 * @param view The WebView from which the request for a new window
117 * originated.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700118 * @param isDialog {@code true} if the new window should be a dialog, rather than
Steve Block89e00a92011-08-03 15:24:43 +0100119 * a full-size window.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700120 * @param isUserGesture {@code true} if the request was initiated by a user gesture,
Steve Block89e00a92011-08-03 15:24:43 +0100121 * such as the user clicking a link.
122 * @param resultMsg The message to send when once a new WebView has been
123 * created. resultMsg.obj is a
Steve Blockb22a69f2011-10-17 11:55:37 +0100124 * {@link WebView.WebViewTransport} object. This should be
125 * used to transport the new WebView, by calling
126 * {@link WebView.WebViewTransport#setWebView(WebView)
127 * WebView.WebViewTransport.setWebView(WebView)}.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700128 * @return This method should return {@code true} if the host application will
Steve Block89e00a92011-08-03 15:24:43 +0100129 * create a new window, in which case resultMsg should be sent to
Nate Fischer0a6140d2017-09-05 12:37:49 -0700130 * its target. Otherwise, this method should return {@code false}. Returning
131 * {@code false} from this method but also sending resultMsg will result in
Steve Block89e00a92011-08-03 15:24:43 +0100132 * undefined behavior.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133 */
Steve Block89e00a92011-08-03 15:24:43 +0100134 public boolean onCreateWindow(WebView view, boolean isDialog,
135 boolean isUserGesture, Message resultMsg) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 return false;
137 }
138
139 /**
140 * Request display and focus for this WebView. This may happen due to
141 * another WebView opening a link in this WebView and requesting that this
142 * WebView be displayed.
143 * @param view The WebView that needs to be focused.
144 */
145 public void onRequestFocus(WebView view) {}
146
147 /**
148 * Notify the host application to close the given WebView and remove it
149 * from the view system if necessary. At this point, WebCore has stopped
150 * any loading in this window and has removed any cross-scripting ability
151 * in javascript.
152 * @param window The WebView that needs to be closed.
153 */
154 public void onCloseWindow(WebView window) {}
155
156 /**
157 * Tell the client to display a javascript alert dialog. If the client
Nate Fischer0a6140d2017-09-05 12:37:49 -0700158 * returns {@code true}, WebView will assume that the client will handle the
159 * dialog. If the client returns {@code false}, it will continue execution.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800160 * @param view The WebView that initiated the callback.
161 * @param url The url of the page requesting the dialog.
162 * @param message Message to be displayed in the window.
163 * @param result A JsResult to confirm that the user hit enter.
164 * @return boolean Whether the client will handle the alert dialog.
165 */
166 public boolean onJsAlert(WebView view, String url, String message,
167 JsResult result) {
168 return false;
169 }
170
171 /**
172 * Tell the client to display a confirm dialog to the user. If the client
Nate Fischer0a6140d2017-09-05 12:37:49 -0700173 * returns {@code true}, WebView will assume that the client will handle the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 * confirm dialog and call the appropriate JsResult method. If the
Nate Fischer0a6140d2017-09-05 12:37:49 -0700175 * client returns false, a default value of {@code false} will be returned to
176 * javascript. The default behavior is to return {@code false}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800177 * @param view The WebView that initiated the callback.
178 * @param url The url of the page requesting the dialog.
179 * @param message Message to be displayed in the window.
180 * @param result A JsResult used to send the user's response to
181 * javascript.
182 * @return boolean Whether the client will handle the confirm dialog.
183 */
184 public boolean onJsConfirm(WebView view, String url, String message,
185 JsResult result) {
186 return false;
187 }
188
189 /**
190 * Tell the client to display a prompt dialog to the user. If the client
Nate Fischer0a6140d2017-09-05 12:37:49 -0700191 * returns {@code true}, WebView will assume that the client will handle the
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 * prompt dialog and call the appropriate JsPromptResult method. If the
Nate Fischer0a6140d2017-09-05 12:37:49 -0700193 * client returns false, a default value of {@code false} will be returned to to
194 * javascript. The default behavior is to return {@code false}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 * @param view The WebView that initiated the callback.
196 * @param url The url of the page requesting the dialog.
197 * @param message Message to be displayed in the window.
198 * @param defaultValue The default value displayed in the prompt dialog.
199 * @param result A JsPromptResult used to send the user's reponse to
200 * javascript.
201 * @return boolean Whether the client will handle the prompt dialog.
202 */
203 public boolean onJsPrompt(WebView view, String url, String message,
204 String defaultValue, JsPromptResult result) {
205 return false;
206 }
207
208 /**
209 * Tell the client to display a dialog to confirm navigation away from the
210 * current page. This is the result of the onbeforeunload javascript event.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700211 * If the client returns {@code true}, WebView will assume that the client will
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800212 * handle the confirm dialog and call the appropriate JsResult method. If
Nate Fischer0a6140d2017-09-05 12:37:49 -0700213 * the client returns {@code false}, a default value of {@code true} will be returned to
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214 * javascript to accept navigation away from the current page. The default
Nate Fischer0a6140d2017-09-05 12:37:49 -0700215 * behavior is to return {@code false}. Setting the JsResult to {@code true} will navigate
216 * away from the current page, {@code false} will cancel the navigation.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 * @param view The WebView that initiated the callback.
218 * @param url The url of the page requesting the dialog.
219 * @param message Message to be displayed in the window.
220 * @param result A JsResult used to send the user's response to
221 * javascript.
222 * @return boolean Whether the client will handle the confirm dialog.
223 */
224 public boolean onJsBeforeUnload(WebView view, String url, String message,
225 JsResult result) {
226 return false;
227 }
Ben Murdoch7df19852009-04-22 13:07:58 +0100228
229 /**
Steve Block285ddfc2012-03-28 12:46:02 +0100230 * Tell the client that the quota has been exceeded for the Web SQL Database
231 * API for a particular origin and request a new quota. The client must
232 * respond by invoking the
233 * {@link WebStorage.QuotaUpdater#updateQuota(long) updateQuota(long)}
234 * method of the supplied {@link WebStorage.QuotaUpdater} instance. The
235 * minimum value that can be set for the new quota is the current quota. The
236 * default implementation responds with the current quota, so the quota will
237 * not be increased.
238 * @param url The URL of the page that triggered the notification
239 * @param databaseIdentifier The identifier of the database where the quota
240 * was exceeded.
241 * @param quota The quota for the origin, in bytes
242 * @param estimatedDatabaseSize The estimated size of the offending
243 * database, in bytes
244 * @param totalQuota The total quota for all origins, in bytes
245 * @param quotaUpdater An instance of {@link WebStorage.QuotaUpdater} which
246 * must be used to inform the WebView of the new quota.
Jonathan Dixon5545d082013-08-31 22:43:11 -0700247 * @deprecated This method is no longer called; WebView now uses the HTML5 / JavaScript Quota
248 * Management API.
Ben Murdoch7df19852009-04-22 13:07:58 +0100249 */
Jonathan Dixon5545d082013-08-31 22:43:11 -0700250 @Deprecated
Ben Murdoch7df19852009-04-22 13:07:58 +0100251 public void onExceededDatabaseQuota(String url, String databaseIdentifier,
Steve Block285ddfc2012-03-28 12:46:02 +0100252 long quota, long estimatedDatabaseSize, long totalQuota,
253 WebStorage.QuotaUpdater quotaUpdater) {
Ben Murdoch7df19852009-04-22 13:07:58 +0100254 // This default implementation passes the current quota back to WebCore.
255 // WebCore will interpret this that new quota was declined.
Steve Block285ddfc2012-03-28 12:46:02 +0100256 quotaUpdater.updateQuota(quota);
Ben Murdoch7df19852009-04-22 13:07:58 +0100257 }
Guang Zhu10e4d202009-05-11 18:09:51 -0700258
Andrei Popescu59e2ad92009-07-28 13:38:06 +0100259 /**
Selim Gurunc86bec92012-06-28 16:47:19 -0700260 * Notify the host application that the Application Cache has reached the
261 * maximum size. The client must respond by invoking the
Steve Block285ddfc2012-03-28 12:46:02 +0100262 * {@link WebStorage.QuotaUpdater#updateQuota(long) updateQuota(long)}
263 * method of the supplied {@link WebStorage.QuotaUpdater} instance. The
264 * minimum value that can be set for the new quota is the current quota. The
265 * default implementation responds with the current quota, so the quota will
266 * not be increased.
267 * @param requiredStorage The amount of storage required by the Application
268 * Cache operation that triggered this notification,
269 * in bytes.
Selim Gurunc86bec92012-06-28 16:47:19 -0700270 * @param quota the current maximum Application Cache size, in bytes
Steve Block285ddfc2012-03-28 12:46:02 +0100271 * @param quotaUpdater An instance of {@link WebStorage.QuotaUpdater} which
272 * must be used to inform the WebView of the new quota.
Jonathan Dixon5545d082013-08-31 22:43:11 -0700273 * @deprecated This method is no longer called; WebView now uses the HTML5 / JavaScript Quota
274 * Management API.
Andrei Popescu59e2ad92009-07-28 13:38:06 +0100275 */
Jonathan Dixon5545d082013-08-31 22:43:11 -0700276 @Deprecated
Steve Block285ddfc2012-03-28 12:46:02 +0100277 public void onReachedMaxAppCacheSize(long requiredStorage, long quota,
Andrei Popescu59e2ad92009-07-28 13:38:06 +0100278 WebStorage.QuotaUpdater quotaUpdater) {
Steve Block285ddfc2012-03-28 12:46:02 +0100279 quotaUpdater.updateQuota(quota);
Andrei Popescu59e2ad92009-07-28 13:38:06 +0100280 }
281
Guang Zhu81e41432009-05-08 16:09:55 -0700282 /**
Steve Block7351adf2011-11-30 15:52:32 +0000283 * Notify the host application that web content from the specified origin
284 * is attempting to use the Geolocation API, but no permission state is
285 * currently set for that origin. The host application should invoke the
286 * specified callback with the desired permission state. See
287 * {@link GeolocationPermissions} for details.
Tim Volodineb0e97982016-04-27 14:14:09 +0100288 *
289 * <p>Note that for applications targeting Android N and later SDKs
290 * (API level > {@link android.os.Build.VERSION_CODES#M})
291 * this method is only called for requests originating from secure
292 * origins such as https. On non-secure origins geolocation requests
293 * are automatically denied.</p>
294 *
Steve Block7351adf2011-11-30 15:52:32 +0000295 * @param origin The origin of the web content attempting to use the
296 * Geolocation API.
297 * @param callback The callback to use to set the permission state for the
298 * origin.
Steve Block4faee092009-07-28 18:20:50 +0100299 */
300 public void onGeolocationPermissionsShowPrompt(String origin,
Tim Volodine0bb7d2e2015-07-23 17:16:16 +0000301 GeolocationPermissions.Callback callback) {}
Steve Block4faee092009-07-28 18:20:50 +0100302
303 /**
Steve Block7351adf2011-11-30 15:52:32 +0000304 * Notify the host application that a request for Geolocation permissions,
305 * made with a previous call to
306 * {@link #onGeolocationPermissionsShowPrompt(String,GeolocationPermissions.Callback) onGeolocationPermissionsShowPrompt()}
307 * has been canceled. Any related UI should therefore be hidden.
Steve Block4faee092009-07-28 18:20:50 +0100308 */
309 public void onGeolocationPermissionsHidePrompt() {}
310
311 /**
Tao Bai4c22b542014-04-15 18:04:49 +0000312 * Notify the host application that web content is requesting permission to
313 * access the specified resources and the permission currently isn't granted
Tao Bai2871feb2014-07-16 13:54:15 -0700314 * or denied. The host application must invoke {@link PermissionRequest#grant(String[])}
Tao Bai4c22b542014-04-15 18:04:49 +0000315 * or {@link PermissionRequest#deny()}.
316 *
317 * If this method isn't overridden, the permission is denied.
318 *
319 * @param request the PermissionRequest from current web content.
Tao Bai4c22b542014-04-15 18:04:49 +0000320 */
321 public void onPermissionRequest(PermissionRequest request) {
322 request.deny();
323 }
324
325 /**
326 * Notify the host application that the given permission request
327 * has been canceled. Any related UI should therefore be hidden.
328 *
Tao Baifa1fd2c2014-04-30 13:31:34 -0700329 * @param request the PermissionRequest that needs be canceled.
Tao Bai4c22b542014-04-15 18:04:49 +0000330 */
331 public void onPermissionRequestCanceled(PermissionRequest request) {}
332
333 /**
Guang Zhu81e41432009-05-08 16:09:55 -0700334 * Tell the client that a JavaScript execution timeout has occured. And the
335 * client may decide whether or not to interrupt the execution. If the
Nate Fischer0a6140d2017-09-05 12:37:49 -0700336 * client returns {@code true}, the JavaScript will be interrupted. If the client
337 * returns {@code false}, the execution will continue. Note that in the case of
Guang Zhu81e41432009-05-08 16:09:55 -0700338 * continuing execution, the timeout counter will be reset, and the callback
339 * will continue to occur if the script does not finish at the next check
340 * point.
341 * @return boolean Whether the JavaScript execution should be interrupted.
Ben Murdoch1bd37b12012-05-28 12:42:39 +0100342 * @deprecated This method is no longer supported and will not be invoked.
Guang Zhu81e41432009-05-08 16:09:55 -0700343 */
Ben Murdoch1bd37b12012-05-28 12:42:39 +0100344 // This method was only called when using the JSC javascript engine. V8 became
345 // the default JS engine with Froyo and support for building with JSC was
346 // removed in b/5495373. V8 does not have a mechanism for making a callback such
347 // as this.
Aurimas Liutikas514c5ef2016-05-24 15:22:55 -0700348 @Deprecated
Guang Zhu81e41432009-05-08 16:09:55 -0700349 public boolean onJsTimeout() {
350 return true;
351 }
Ben Murdoch6262ae52009-04-17 13:21:53 +0100352
353 /**
Ben Murdoch7caaeec2009-11-19 18:14:53 +0000354 * Report a JavaScript error message to the host application. The ChromeClient
355 * should override this to process the log message as they see fit.
Ben Murdoch6262ae52009-04-17 13:21:53 +0100356 * @param message The error message to report.
357 * @param lineNumber The line number of the error.
358 * @param sourceID The name of the source file that caused the error.
Ben Murdoch3141e0a2010-01-28 15:06:32 +0000359 * @deprecated Use {@link #onConsoleMessage(ConsoleMessage) onConsoleMessage(ConsoleMessage)}
360 * instead.
Ben Murdoch6262ae52009-04-17 13:21:53 +0100361 */
Ben Murdoch3141e0a2010-01-28 15:06:32 +0000362 @Deprecated
363 public void onConsoleMessage(String message, int lineNumber, String sourceID) { }
364
365 /**
366 * Report a JavaScript console message to the host application. The ChromeClient
367 * should override this to process the log message as they see fit.
368 * @param consoleMessage Object containing details of the console message.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700369 * @return {@code true} if the message is handled by the client.
Ben Murdoch3141e0a2010-01-28 15:06:32 +0000370 */
371 public boolean onConsoleMessage(ConsoleMessage consoleMessage) {
372 // Call the old version of this function for backwards compatability.
373 onConsoleMessage(consoleMessage.message(), consoleMessage.lineNumber(),
374 consoleMessage.sourceId());
375 return false;
376 }
Andrei Popescubf385d72009-09-18 18:59:52 +0100377
378 /**
Ben Murdochf0c443d2009-11-19 16:43:58 +0000379 * When not playing, video elements are represented by a 'poster' image. The
380 * image to use can be specified by the poster attribute of the video tag in
381 * HTML. If the attribute is absent, then a default poster will be used. This
382 * method allows the ChromeClient to provide that default image.
Andrei Popescubf385d72009-09-18 18:59:52 +0100383 *
Nate Fischer0a6140d2017-09-05 12:37:49 -0700384 * @return Bitmap The image to use as a default poster, or {@code null} if no such image is
Ben Murdochf0c443d2009-11-19 16:43:58 +0000385 * available.
Andrei Popescubf385d72009-09-18 18:59:52 +0100386 */
Nate Fischer3442c742017-09-08 17:02:00 -0700387 @Nullable
Andrei Popescubf385d72009-09-18 18:59:52 +0100388 public Bitmap getDefaultVideoPoster() {
389 return null;
390 }
391
392 /**
Ignacio Solla7a4e18f2014-12-29 12:21:52 +0000393 * Obtains a View to be displayed while buffering of full screen video is taking
394 * place. The host application can override this method to provide a View
395 * containing a spinner or similar.
Andrei Popescubf385d72009-09-18 18:59:52 +0100396 *
Ben Murdochf0c443d2009-11-19 16:43:58 +0000397 * @return View The View to be displayed whilst the video is loading.
Andrei Popescubf385d72009-09-18 18:59:52 +0100398 */
Nate Fischer3442c742017-09-08 17:02:00 -0700399 @Nullable
Andrei Popescubf385d72009-09-18 18:59:52 +0100400 public View getVideoLoadingProgressView() {
401 return null;
402 }
Leon Clarke194e3452009-09-28 11:42:12 +0100403
404 /** Obtains a list of all visited history items, used for link coloring
Leon Clarke194e3452009-09-28 11:42:12 +0100405 */
406 public void getVisitedHistory(ValueCallback<String[]> callback) {
407 }
408
Leon Scroggins70ca3c22009-10-02 15:58:55 -0400409 /**
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700410 * Tell the client to show a file chooser.
411 *
412 * This is called to handle HTML forms with 'file' input type, in response to the
413 * user pressing the "Select File" button.
414 * To cancel the request, call <code>filePathCallback.onReceiveValue(null)</code> and
Nate Fischer0a6140d2017-09-05 12:37:49 -0700415 * return {@code true}.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700416 *
417 * @param webView The WebView instance that is initiating the request.
418 * @param filePathCallback Invoke this callback to supply the list of paths to files to upload,
Nate Fischer0a6140d2017-09-05 12:37:49 -0700419 * or {@code null} to cancel. Must only be called if the
420 * {@link #onShowFileChooser} implementation returns {@code true}.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700421 * @param fileChooserParams Describes the mode of file chooser to be opened, and options to be
422 * used with it.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700423 * @return {@code true} if filePathCallback will be invoked, {@code false} to use default
424 * handling.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700425 *
426 * @see FileChooserParams
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700427 */
Selim Gurun48f6c452014-07-18 16:23:46 -0700428 public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback,
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700429 FileChooserParams fileChooserParams) {
430 return false;
431 }
432
433 /**
Selim Gurun48f6c452014-07-18 16:23:46 -0700434 * Parameters used in the {@link #onShowFileChooser} method.
435 */
436 public static abstract class FileChooserParams {
437 /** Open single file. Requires that the file exists before allowing the user to pick it. */
Selim Gurun17d1adb2014-08-27 11:22:26 -0700438 public static final int MODE_OPEN = 0;
Selim Gurun48f6c452014-07-18 16:23:46 -0700439 /** Like Open but allows multiple files to be selected. */
Selim Gurun17d1adb2014-08-27 11:22:26 -0700440 public static final int MODE_OPEN_MULTIPLE = 1;
Selim Gurun48f6c452014-07-18 16:23:46 -0700441 /** Like Open but allows a folder to be selected. The implementation should enumerate
Selim Gurun17d1adb2014-08-27 11:22:26 -0700442 all files selected by this operation.
443 This feature is not supported at the moment.
444 @hide */
445 public static final int MODE_OPEN_FOLDER = 2;
Selim Gurun48f6c452014-07-18 16:23:46 -0700446 /** Allows picking a nonexistent file and saving it. */
Selim Gurun17d1adb2014-08-27 11:22:26 -0700447 public static final int MODE_SAVE = 3;
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700448
449 /**
Tao Baie8df27a2014-09-02 14:09:49 -0700450 * Parse the result returned by the file picker activity. This method should be used with
451 * {@link #createIntent}. Refer to {@link #createIntent} for how to use it.
452 *
453 * @param resultCode the integer result code returned by the file picker activity.
454 * @param data the intent returned by the file picker activity.
Nate Fischer0a6140d2017-09-05 12:37:49 -0700455 * @return the Uris of selected file(s) or {@code null} if the resultCode indicates
Tao Baie8df27a2014-09-02 14:09:49 -0700456 * activity canceled or any other error.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700457 */
Nate Fischer3442c742017-09-08 17:02:00 -0700458 @Nullable
Tao Baie8df27a2014-09-02 14:09:49 -0700459 public static Uri[] parseResult(int resultCode, Intent data) {
460 return WebViewFactory.getProvider().getStatics().parseFileChooserResult(resultCode, data);
461 }
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700462
463 /**
Selim Gurun48f6c452014-07-18 16:23:46 -0700464 * Returns file chooser mode.
465 */
466 public abstract int getMode();
467
468 /**
Selim Gurun17d1adb2014-08-27 11:22:26 -0700469 * Returns an array of acceptable MIME types. The returned MIME type
470 * could be partial such as audio/*. The array will be empty if no
Selim Gurun48f6c452014-07-18 16:23:46 -0700471 * acceptable types are specified.
472 */
473 public abstract String[] getAcceptTypes();
474
475 /**
476 * Returns preference for a live media captured value (e.g. Camera, Microphone).
Nate Fischer0a6140d2017-09-05 12:37:49 -0700477 * True indicates capture is enabled, {@code false} disabled.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700478 *
Selim Gurun48f6c452014-07-18 16:23:46 -0700479 * Use <code>getAcceptTypes</code> to determine suitable capture devices.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700480 */
Selim Gurun48f6c452014-07-18 16:23:46 -0700481 public abstract boolean isCaptureEnabled();
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700482
483 /**
Nate Fischer3442c742017-09-08 17:02:00 -0700484 * Returns the title to use for this file selector. If {@code null} a default title should
485 * be used.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700486 */
Nate Fischer3442c742017-09-08 17:02:00 -0700487 @Nullable
Selim Gurun48f6c452014-07-18 16:23:46 -0700488 public abstract CharSequence getTitle();
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700489
490 /**
Nate Fischer0a6140d2017-09-05 12:37:49 -0700491 * The file name of a default selection if specified, or {@code null}.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700492 */
Nate Fischer3442c742017-09-08 17:02:00 -0700493 @Nullable
Selim Gurun17d1adb2014-08-27 11:22:26 -0700494 public abstract String getFilenameHint();
Tao Baie8df27a2014-09-02 14:09:49 -0700495
496 /**
497 * Creates an intent that would start a file picker for file selection.
498 * The Intent supports choosing files from simple file sources available
499 * on the device. Some advanced sources (for example, live media capture)
500 * may not be supported and applications wishing to support these sources
501 * or more advanced file operations should build their own Intent.
502 *
503 * <pre>
504 * How to use:
505 * 1. Build an intent using {@link #createIntent}
506 * 2. Fire the intent using {@link android.app.Activity#startActivityForResult}.
507 * 3. Check for ActivityNotFoundException and take a user friendly action if thrown.
508 * 4. Listen the result using {@link android.app.Activity#onActivityResult}
509 * 5. Parse the result using {@link #parseResult} only if media capture was not requested.
510 * 6. Send the result using filePathCallback of {@link WebChromeClient#onShowFileChooser}
511 * </pre>
512 *
513 * @return an Intent that supports basic file chooser sources.
514 */
515 public abstract Intent createIntent();
516 }
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700517
518 /**
Leon Scroggins70ca3c22009-10-02 15:58:55 -0400519 * Tell the client to open a file chooser.
520 * @param uploadFile A ValueCallback to set the URI of the file to upload.
Ben Murdoch4ae32f52010-05-18 14:30:39 +0100521 * onReceiveValue must be called to wake up the thread.a
522 * @param acceptType The value of the 'accept' attribute of the input tag
523 * associated with this file picker.
Ben Murdochbe716922012-01-11 10:55:10 +0000524 * @param capture The value of the 'capture' attribute of the input tag
525 * associated with this file picker.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700526 *
Nate Fischerc4f8f892017-08-30 15:39:32 -0700527 * @deprecated Use {@link #onShowFileChooser} instead.
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700528 * @hide This method was not published in any SDK version.
Leon Scroggins70ca3c22009-10-02 15:58:55 -0400529 */
Ignacio Solla451e3382014-11-10 10:35:54 +0000530 @SystemApi
Jonathan Dixon3a5cf382013-07-27 15:37:31 -0700531 @Deprecated
Ben Murdochbe716922012-01-11 10:55:10 +0000532 public void openFileChooser(ValueCallback<Uri> uploadFile, String acceptType, String capture) {
Leon Scroggins70ca3c22009-10-02 15:58:55 -0400533 uploadFile.onReceiveValue(null);
534 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800535}