Home | History | Annotate | Download | only in launcher3

Lines Matching defs:Launcher

118  * Default launcher application.
120 public class Launcher extends Activity
123 static final String TAG = "Launcher";
152 private static final String PREFERENCES = "launcher.preferences";
163 private static final String RUNTIME_STATE_CURRENT_SCREEN = "launcher.current_screen";
165 private static final String RUNTIME_STATE = "launcher.state";
167 private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "launcher.add_container";
169 private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "launcher.add_screen";
171 private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "launcher.add_cell_x";
173 private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "launcher.add_cell_y";
175 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME = "launcher.rename_folder";
177 private static final String RUNTIME_STATE_PENDING_FOLDER_RENAME_ID = "launcher.rename_folder_id";
179 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_X = "launcher.add_span_x";
181 private static final String RUNTIME_STATE_PENDING_ADD_SPAN_Y = "launcher.add_span_y";
183 private static final String RUNTIME_STATE_PENDING_ADD_WIDGET_INFO = "launcher.add_widget_info";
185 private static final String TOOLBAR_ICON_METADATA_NAME = "com.android.launcher.toolbar_icon";
187 "com.android.launcher.toolbar_search_icon";
189 "com.android.launcher.toolbar_voice_search_icon";
194 /** The different states that Launcher can be in. */
249 // Instead, just save the state that we need to restore Launcher to, and commit it in onResume.
264 // Keep track of whether the user has left launcher
423 Environment.getExternalStorageDirectory() + "/launcher");
428 setContentView(R.layout.launcher);
452 // If the user leaves launcher, then we should just load items asynchronously when
457 // configuration change) while launcher is in the foreground
482 /** To be overriden by subclasses to hint to Launcher that we have custom content */
549 readConfiguration(Launcher.this, localeConfiguration);
586 writeConfiguration(Launcher.this, localeConfiguration);
700 // if you turned the screen off and then back while in All Apps, Launcher would not
832 Log.v(TAG, "Launcher.onResume()");
836 // Restore the previous launcher state
896 // It is possible that widgets can receive updates while launcher is not in the foreground.
902 // Process any items that were added while Launcher was away.
929 // Ensure that items added to Launcher are queued until Launcher returns
1138 mLauncherView = findViewById(R.id.launcher);
1388 // Try finding open space on Launcher screen
1427 // Build Launcher-specific widget info and save to database
1517 // We want to let Launcher draw itself at least once before we force it to build
1518 // layers on all the workspace pages, so that transitioning to Launcher from other
1545 // When Launcher comes back to foreground, a different Activity might be responsible for
1765 Log.w(TAG, "problem while stopping AppWidgetHost during Launcher destruction", ex);
1774 // to prevent leaking Launcher activities on orientation change.
1812 // Use any text typed in the launcher as the initial query
1817 appSearchData.putString("source", "launcher-search");
2039 LauncherModel.addItemToDatabase(Launcher.this, folderInfo, container, screenId, cellX, cellY,
2305 * Called when the user stops interacting with the launcher.
2311 * Called when the user starts interacting with the launcher.
2354 // private contract between launcher and may be ignored in the future).
2368 Log.e(TAG, "Launcher does not have the permission to launch " + intent +
3756 // when we are loading right after we return to launcher.
3928 mIntentsOnWorkspaceFromUpgradePath, Launcher.this, mWorkspace);
4387 Log.d(TAG, "BEGIN launcher3 dump state for launcher " + this);
4419 Log.d(TAG, "Launcher debug logs: ");
4491 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace);
4492 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
4493 void onLauncherTransitionStep(Launcher l, float t);
4494 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);