Home | History | Annotate | Download | only in launcher3

Lines Matching defs:Launcher

131  * Default launcher application.
133 public class Launcher extends Activity
136 static final String TAG = "Launcher";
177 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
179 private static final String RUNTIME_STATE = "launcher.state";
181 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
183 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
185 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
187 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
189 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
191 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
193 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
195 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
197 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
199 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_ID = "launcher.add_widget_id";
201 private static final String RUNTIME_STATE_VIEW_IDS = "launcher.view_ids";
203 static final String INTRO_SCREEN_DISMISSED = "launcher.intro_screen_dismissed";
204 static final String FIRST_RUN_ACTIVITY_DISPLAYED = "launcher.first_run_activity_displayed";
206 static final String FIRST_LOAD_COMPLETE = "launcher.first_load_complete";
216 public static final String USER_HAS_MIGRATED = "launcher.user_migrated_from_old_data";
218 /** The different states that Launcher can be in. */
284 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
432 Environment.getExternalStorageDirectory() + "/launcher");
436 setContentView(R.layout.launcher);
454 // If the user leaves launcher, then we should just load items asynchronously when
459 // configuration change) while launcher is in the foreground
514 /** To be overridden by subclasses to hint to Launcher that we have custom content */
558 readConfiguration(Launcher.this, localeConfiguration);
594 writeConfiguration(Launcher.this, localeConfiguration);
734 // if you turned the screen off and then back while in All Apps, Launcher would not
977 Log.v(TAG, "Launcher.onResume()");
986 // Restore the previous launcher state
1041 // It is possible that widgets can receive updates while launcher is not in the foreground.
1047 // Process any items that were added while Launcher was away.
1074 // Ensure that items added to Launcher are queued until Launcher returns
1133 * This method can be called by the Launcher in order to force the LauncherOverlay
1142 * however it doesn't modify any state within the launcher.
1147 * Should be called to tell Launcher that the LauncherOverlay will take over interaction,
1150 * @return true if Launcher allows the LauncherOverlay to become fully immersive. In this
1151 * case, Launcher will modify any necessary state and assumes the overlay is
1158 * Must be called when exiting fully immersive mode. Indicates to Launcher that it has
1355 mLauncherView = findViewById(R.id.launcher);
1601 // Try finding open space on Launcher screen
1641 // Build Launcher-specific widget info and save to database
1793 // We want to let Launcher draw itself at least once before we force it to build
1794 // layers on all the workspace pages, so that transitioning to Launcher from other
2074 // It's possible to receive onDestroy after a new Launcher activity has
2075 // been created. In this case, don't interfere with the new Launcher.
2084 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
2093 // to prevent leaking Launcher activities on orientation change.
2137 // Use any text typed in the launcher as the initial query
2142 appSearchData.putString("source", "launcher-search");
2160 * will be handled directly by the search UI. {@code false} if {@link Launcher} should continue
2418 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
2864 * Called when the user stops interacting with the launcher.
2874 * Called when the user starts interacting with the launcher.
2894 Log.e(TAG, "Launcher does not have permission to launch settings");
2929 // private contract between launcher and may be ignored in the future).
2960 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
4159 Launcher.addDumpLog(TAG, "11683562 - bindAddScreens()", true);
4160 Launcher.addDumpLog(TAG, "11683562 - orderedScreenIds: " +
4321 // when we are loading right after we return to launcher.
4412 + ", as the launcher is unable to bing a new widget id");
4606 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4868 * before showing the standard launcher experience.
4927 * Full screen intro screen to be shown and dismissed before the launcher can be used.
4988 // The two first run cling paths are mutually exclusive, if the launcher is preinstalled
5062 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
5097 Log.d(TAG, "Launcher debug logs: ");
5178 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
5179 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
5180 void onLauncherTransitionStep(Launcher l, float t);
5181 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);