diff options
author | Dianne Hackborn <hackbod@google.com> | 2012-03-14 10:38:05 -0700 |
---|---|---|
committer | Dianne Hackborn <hackbod@google.com> | 2012-03-14 12:57:14 -0700 |
commit | a4972e951bf2bdb7afdafee95b3ab0c15b8bacae (patch) | |
tree | 9800a9dcd62d945a8ad71549ebcef70393ef5442 /services/java/com/android/server/UiModeManagerService.java | |
parent | 89ea4ca9c26f3c7e365525a0b83500e85517a457 (diff) | |
download | frameworks_base-a4972e951bf2bdb7afdafee95b3ab0c15b8bacae.zip frameworks_base-a4972e951bf2bdb7afdafee95b3ab0c15b8bacae.tar.gz frameworks_base-a4972e951bf2bdb7afdafee95b3ab0c15b8bacae.tar.bz2 |
Add new "options" argument to all startActivity APIs.
This will be used to allow new features to be requested... such as,
say, a special kind of animation. Right now there are no options
defined.
Change-Id: I4eb6f27275cdd4bf186f6da316ab93a2372ad4b7
Diffstat (limited to 'services/java/com/android/server/UiModeManagerService.java')
-rw-r--r-- | services/java/com/android/server/UiModeManagerService.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/java/com/android/server/UiModeManagerService.java b/services/java/com/android/server/UiModeManagerService.java index c5c2901..84daead 100644 --- a/services/java/com/android/server/UiModeManagerService.java +++ b/services/java/com/android/server/UiModeManagerService.java @@ -189,8 +189,8 @@ class UiModeManagerService extends IUiModeManager.Stub { } try { ActivityManagerNative.getDefault().startActivityWithConfig( - null, homeIntent, null, null, 0, null, null, 0, false, false, - newConfig); + null, homeIntent, null, null, null, 0, 0, + newConfig, null); mHoldingConfiguration = false; } catch (RemoteException e) { Slog.w(TAG, e.getCause()); |