Home | History | Annotate | Download | only in inputmethodservice

Lines Matching defs:inputmethodservice

17 package android.inputmethodservice;
73 * InputMethodService provides a standard implementation of an InputMethod,
95 * work: the {@link android.inputmethodservice.InputMethodService} provides
104 * together in a single window managed by the InputMethodService. It will
130 * that view and can call back on the InputMethodService to interact with the
224 public class InputMethodService extends AbstractInputMethodService {
225 static final String TAG = "InputMethodService";
374 * {@link InputMethodService#onBindInput InputMethodService.onBindInput()}
477 * Call {@link InputMethodService#onDisplayCompletions
478 * InputMethodService.onDisplayCompletions()}.
489 * Call {@link InputMethodService#onUpdateExtractedText
490 * InputMethodService.onUpdateExtractedText()}.
500 * Call {@link InputMethodService#onUpdateSelection
501 * InputMethodService.onUpdateSelection()}.
509 InputMethodService.this.onUpdateSelection(oldSelStart, oldSelEnd,
518 InputMethodService.this.onViewClicked(focusChanged);
522 * Call {@link InputMethodService#onUpdateCursor
523 * InputMethodService.onUpdateCursor()}.
529 InputMethodService.this.onUpdateCursor(newCursor);
533 * Call {@link InputMethodService#onAppPrivateCommand
534 * InputMethodService.onAppPrivateCommand()}.
540 InputMethodService.this.onAppPrivateCommand(action, data);
547 InputMethodService.this.onToggleSoftInput(showFlags, hideFlags);
551 * Call {@link InputMethodService#onUpdateCursorAnchorInfo
552 * InputMethodService.onUpdateCursorAnchorInfo()}.
558 InputMethodService.this.onUpdateCursorAnchorInfo(info);
719 mThemeAttrs = obtainStyledAttributes(android.R.styleable.InputMethodService);
768 * InputMethodService generally don't need to deal directly with
2415 * {@link android.inputmethodservice.InputMethodService#onStartInputView(EditorInfo, boolean)}.
2427 * Performs a dump of the InputMethodService's internal state. Override