Lines Matching defs:Launcher

158 public class Launcher extends BaseActivity
163 public static final String TAG = "Launcher";
210 /** The different states that Launcher can be in. */
256 // We need to store the orientation Launcher was created with, due to a bug (b/64916689)
262 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
368 Trace.beginSection("Launcher-onCreate");
572 /** To be overridden by subclasses to hint to Launcher that we have custom content */
949 Log.v(TAG, "Launcher.onResume()");
1043 // Process any items that were added while Launcher was away.
1061 // Ensure that items added to Launcher are queued until Launcher returns
1115 * @param callbacks A set of callbacks provided by Launcher in relation to the overlay
1554 // the user unlocked and the Launcher is not in the foreground.
1567 PopupContainerWithArrow popup = PopupContainerWithArrow.getOpen(Launcher.this);
1604 // We want to let Launcher draw itself at least once before we force it to build
1605 // layers on all the workspace pages, so that transitioning to Launcher from other
1834 // It's possible to receive onDestroy after a new Launcher activity has
1835 // been created. In this case, don't interfere with the new Launcher.
1848 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
3051 * Updates the set of predicted apps if it hasn't been updated since the last time Launcher was
3687 * Copies LauncherModel's map of activities to shortcut ids to Launcher's. This is necessary
3688 * because LauncherModel's map is updated in the background, while Launcher runs on the UI.
3907 * $ adb shell dumpsys activity com.android.launcher3.Launcher [--all]
4022 public static Launcher getLauncher(Context context) {
4023 if (context instanceof Launcher) {
4024 return (Launcher) context;
4026 return ((Launcher) ((ContextWrapper) context).getBaseContext());