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
This commit is contained in:
Dianne Hackborn
2012-03-14 10:38:05 -07:00
parent 89ea4ca9c2
commit a4972e951b
20 changed files with 871 additions and 374 deletions

View File

@@ -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());