diff options
| author | Michael Wright <michaelwr@google.com> | 2014-05-01 15:41:33 -0700 |
|---|---|---|
| committer | Michael Wright <michaelwr@google.com> | 2014-05-01 15:41:33 -0700 |
| commit | 1feb11f511af25aa5d62d073d970071d16985661 (patch) | |
| tree | bbcb4f8f2cba3abd649bc81c7e8ecb9a90059492 /core/java/android/webkit/WebViewClient.java | |
| parent | e872a2f69f4076f7ae5cd19b95b4bf9784e183e1 (diff) | |
Fix WebViewClient docs
Change-Id: I960701a49be66fccfd03a8876779a5f7917642ea
Diffstat (limited to 'core/java/android/webkit/WebViewClient.java')
| -rw-r--r-- | core/java/android/webkit/WebViewClient.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/core/java/android/webkit/WebViewClient.java b/core/java/android/webkit/WebViewClient.java index 33a6df6a9131..107ae4fad832 100644 --- a/core/java/android/webkit/WebViewClient.java +++ b/core/java/android/webkit/WebViewClient.java @@ -287,11 +287,12 @@ public class WebViewClient { * from where the event is dispatched. It gives the host application a chance * to handle the unhandled input events. * - * Note that if the event is a {@link MotionEvent}, then it's lifetime is only that of the - * function call. If the WebViewClient wishes to use the event beyond that, then it <i>must</i> - * create a copy of the event. + * Note that if the event is a {@link android.view.MotionEvent}, then it's lifetime is only + * that of the function call. If the WebViewClient wishes to use the event beyond that, then it + * <i>must</i> create a copy of the event. * - * It is the responsibility of overriders of this method to call {@link onUnhandledKeyEvent} + * It is the responsibility of overriders of this method to call + * {@link #onUnhandledKeyEvent(WebView, KeyEvent)} * when appropriate if they wish to continue receiving events through it. * * @param view The WebView that is initiating the callback. |
