diff options
| author | Dianne Hackborn <hackbod@google.com> | 2009-08-20 19:31:38 -0700 |
|---|---|---|
| committer | Dianne Hackborn <hackbod@google.com> | 2009-08-20 20:34:42 -0700 |
| commit | 3be63c09309b21c01b535271625d4c39045690e5 (patch) | |
| tree | 5bc349f6c916ddb80bf852fa68de11cdfe3cfadf /core/java/android/app/Dialog.java | |
| parent | e13ec26e6cab65831eefbd7b3c7aeee9ea714c91 (diff) | |
Infrastructure for supporting wallpaper previews.
Various things that will allow us to show previews of wallpapers.
Also some fixes to animations across wallpapers.
Diffstat (limited to 'core/java/android/app/Dialog.java')
| -rw-r--r-- | core/java/android/app/Dialog.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/app/Dialog.java b/core/java/android/app/Dialog.java index 943275514caf..35d1004be107 100644 --- a/core/java/android/app/Dialog.java +++ b/core/java/android/app/Dialog.java @@ -576,6 +576,12 @@ public class Dialog implements DialogInterface, Window.Callback, public void onWindowFocusChanged(boolean hasFocus) { } + public void onAttachedToWindow() { + } + + public void onDetachedFromWindow() { + } + /** * Called to process key events. You can override this to intercept all * key events before they are dispatched to the window. Be sure to call |
