Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static abstract class

SpellCheckerService.Session

extends Object
java.lang.Object
   ↳ android.service.textservice.SpellCheckerService.Session

Class Overview

This abstract class should be overridden by a concrete implementation of a spell checker.

Summary

Public Constructors
SpellCheckerService.Session ()
Public Methods
Bundle getBundle ()
String getLocale ()
void onCancel ()
Request to abort all tasks executed in SpellChecker.
void onClose ()
Request to close this session.
abstract void onCreate ()
This is called after the class is initialized, at which point it knows it can call getLocale() etc...
SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple ( TextInfo[] textInfos, int suggestionsLimit)
Get sentence suggestions for specified texts in an array of TextInfo.
abstract SuggestionsInfo onGetSuggestions ( TextInfo textInfo, int suggestionsLimit)
Get suggestions for specified text in TextInfo.
SuggestionsInfo[] onGetSuggestionsMultiple ( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords)
A batch process of onGetSuggestions.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SpellCheckerService.Session ()

Public Methods

public Bundle getBundle ()

Returns
  • Bundle for this session

public String getLocale ()

Returns
  • Locale for this session

public void onCancel ()

Request to abort all tasks executed in SpellChecker. This function will run on the incoming IPC thread. So, this is not called on the main thread, but will be called in series on another thread.

public void onClose ()

Request to close this session. This function will run on the incoming IPC thread. So, this is not called on the main thread, but will be called in series on another thread.

public abstract void onCreate ()

This is called after the class is initialized, at which point it knows it can call getLocale() etc...

public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple ( TextInfo[] textInfos, int suggestionsLimit)

Get sentence suggestions for specified texts in an array of TextInfo. The default implementation splits the input text to words and returns SentenceSuggestionsInfo which contains suggestions for each word. This function will run on the incoming IPC thread. So, this is not called on the main thread, but will be called in series on another thread. When you override this method, make sure that suggestionsLimit is applied to suggestions that share the same start position and length.

Parameters
textInfos an array of the text metadata
suggestionsLimit the maximum number of suggestions to be returned

public abstract SuggestionsInfo onGetSuggestions ( TextInfo textInfo, int suggestionsLimit)

Get suggestions for specified text in TextInfo. This function will run on the incoming IPC thread. So, this is not called on the main thread, but will be called in series on another thread.

Parameters
textInfo the text metadata
suggestionsLimit the maximum number of suggestions to be returned
Returns
  • SuggestionsInfo which contains suggestions for textInfo

public SuggestionsInfo[] onGetSuggestionsMultiple ( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords)

A batch process of onGetSuggestions. This function will run on the incoming IPC thread. So, this is not called on the main thread, but will be called in series on another thread.

Parameters
textInfos an array of the text metadata
suggestionsLimit the maximum number of suggestions to be returned
sequentialWords true if textInfos can be treated as sequential words.