Merge "Sending onCreate to the callbacks after our call is complete" into ub-launcher3-dorval-polish
This commit is contained in:
commit
9f5f297331
|
@ -464,9 +464,6 @@ public class Launcher extends BaseActivity
|
|||
setOrientation();
|
||||
|
||||
setContentView(mLauncherView);
|
||||
if (mLauncherCallbacks != null) {
|
||||
mLauncherCallbacks.onCreate(savedInstanceState);
|
||||
}
|
||||
|
||||
// Listen for broadcasts
|
||||
IntentFilter filter = new IntentFilter();
|
||||
|
@ -477,6 +474,10 @@ public class Launcher extends BaseActivity
|
|||
|
||||
getSystemUiController().updateUiState(SystemUiController.UI_STATE_BASE_WINDOW,
|
||||
Themes.getAttrBoolean(this, R.attr.isWorkspaceDarkText));
|
||||
|
||||
if (mLauncherCallbacks != null) {
|
||||
mLauncherCallbacks.onCreate(savedInstanceState);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue