Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 17.0Version 16.0 (current version)Version 15.0Version 14.0Version 13.0 (home page)Version 12.0 (home page)Version 11.0 (home page)Version 10.0 (home page)Version 2.0 (home page)

Index

On this page

KMManager.registerLexicalModel()


Summary

The registerLexicalModel() method registers a lexical model to use with the LMLayer.

Syntax

KMManager.registerLexicalModel(HashMap<String, String> lexicalModelInfo)

Parameters

lexicalModelInfo

A dictionary of lexical model information with keys and values defined as HashMap<String key, String value).

Returns

Returns true if the lexical model was registered successfully, false otherwise.

Description

Use this method to registers a lexical model so it will generate suggestions with an associated keyboard of a matching language.

Note: When typing in a password field, the word suggestions are temporarily disabled.

Examples

Example: Using registerLexicalModel()

The following script illustrates the use of registerLexicalModel():

    HashMap<String, String>lexicalModelInfo = new HashMap<String, String>();
    lexicalModelInfo.put(KMManager.KMKey_PackageID, "example.ta.wordlist");
    lexicalModelInfo.put(KMManager.KMKey_LanguageID, "ta");
    lexicalModelInfo.put(KMManager.KMKey_LexicalModelID, "example.ta.wordlist");
    lexicalModelInfo.put(KMManager.KMKey_LexicalModelVersion, "1.0");
    KMManager.addLexicalModel(this, lexicalModelInfo);

    KMManager.registerLexicalModel(lexicalModelInfo);

See also