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:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user