Home | History | Annotate | Download | only in widget

Lines Matching refs:actionMsg

948                         final String actionMsg = getActionKeyMessage(c, actionKey);
949 if (actionMsg != null && (actionMsg.length() > 0)) {
950 return onItemClicked(position, keyCode, actionMsg);
1226 private boolean onItemClicked(int position, int actionKey, String actionMsg) {
1308 * @param actionMsg The message for the action key that was pressed,
1312 private boolean launchSuggestion(int position, int actionKey, String actionMsg) {
1316 Intent intent = createIntentFromSuggestion(c, actionKey, actionMsg);
1351 private void launchQuerySearch(int actionKey, String actionMsg, String query) {
1353 Intent intent = createIntent(action, null, null, query, actionKey, actionMsg);
1366 * @param actionMsg The message for the action key that was pressed,
1373 int actionKey, String actionMsg) {
1395 intent.putExtra(SearchManager.ACTION_MSG, actionMsg);
1483 * @param actionMsg The message for the action key that was pressed,
1487 private Intent createIntentFromSuggestion(Cursor c, int actionKey, String actionMsg) {
1516 return createIntent(action, dataUri, extraData, query, actionKey, actionMsg);