diff options
| author | Leon Scroggins <scroggo@google.com> | 2009-08-13 15:34:06 -0400 |
|---|---|---|
| committer | Leon Scroggins <scroggo@google.com> | 2009-08-14 14:47:27 -0400 |
| commit | f58ffac202b5a15f4bbfd5512c58f202a992f594 (patch) | |
| tree | b1f05e7fee1cf33b9b33024ae40f1e97d914334e /core/java/android/webkit/WebChromeClient.java | |
| parent | a8dfe24da014b52d7ae93c3fbd7a8b88ec336572 (diff) | |
Hide the title bar when zoomed in.
Diffstat (limited to 'core/java/android/webkit/WebChromeClient.java')
| -rw-r--r-- | core/java/android/webkit/WebChromeClient.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/webkit/WebChromeClient.java b/core/java/android/webkit/WebChromeClient.java index c10bc97de103..e1c8d4da409a 100644 --- a/core/java/android/webkit/WebChromeClient.java +++ b/core/java/android/webkit/WebChromeClient.java @@ -23,6 +23,15 @@ import android.view.View; public class WebChromeClient { /** + * Tell the host application that the WebView has changed viewing modes. + * @param toZoomedOut If true, the WebView has zoomed out so that the page + * fits the screen. If false, it is zoomed to the setting + * specified by the user. + * @hide + */ + public void onChangeViewingMode(boolean toZoomedOut) {} + + /** * Tell the host application the current progress of loading a page. * @param view The WebView that initiated the callback. * @param newProgress Current page loading progress, represented by |
