Lines Matching defs:action

71  * When the SearchView is used in an ActionBar as an action view for a collapsible menu item, it
188 * SearchView perform the default action.
197 * @return false if the SearchView should perform the default action of showing any
198 * suggestions if available, true if the action was handled by the listener.
870 * Handles the key down event for dealing with action keys.
884 // if it's an action specified by the searchable activity, launch the
885 // entered query with the action key
913 // If a suggestion is selected, handle enter, search key, and action keys
920 // If there is text in the query box, handle enter, and action keys
948 * action keys. If not handled, try refocusing regular characters into the
992 // Next, check for an "action key"
997 // launch suggestion using action key column
1014 * For a given suggestion and a given cursor row, get the action message. If
1016 * definition (for the action key).
1021 * @return Returns a string, or null if no action key message for this
1096 // own candidates, and the spell checker should not be in action. The text editor
1136 * Called when the input method default action key is pressed.
1391 * @param actionKey The key code of the action key that was pressed,
1393 * @param actionMsg The message for the action key that was pressed,
1437 String action = Intent.ACTION_SEARCH;
1438 Intent intent = createIntent(action, null, null, query, actionKey, actionMsg);
1445 * @param action Intent action.
1449 * @param actionKey The key code of the action key that was pressed,
1451 * @param actionMsg The message for the action key that was pressed,
1457 private Intent createIntent(String action, Uri data, String extraData, String query,
1460 Intent intent = new Intent(action);
1569 * @param actionKey The key code of the action key that was pressed,
1571 * @param actionMsg The message for the action key that was pressed,
1577 // use specific action if supplied, or default action if supplied, or fixed default
1578 String action = getColumnString(c, SearchManager.SUGGEST_COLUMN_INTENT_ACTION);
1580 if (action == null) {
1581 action = mSearchable.getSuggestIntentAction();
1583 if (action == null) {
1584 action = Intent.ACTION_SEARCH;
1604 return createIntent(action, dataUri, extraData, query, actionKey, actionMsg);