mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-04 01:46:49 +00:00
Sending onCreate to the callbacks after our call is complete
Bug: Bug: 63381480 Change-Id: Ib5fcd9ef500a91fef93c9e5af657b23723748ccc
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user