Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 19.0Version 18.0 (current version)

Index

On this page

You are viewing an incomplete pre-release version of this documentation. Click here to open the current version, 18.0.

KMManager.getLexicalModelInfo()


Summary

The getLexicalModelInfo() method returns returns dictionary information of the specified lexical model.

Syntax

HashMap<String,String> KMManager.getLexicalModelInfo(Context context, int index)

Parameters

context
The context.
index
Zero-based index of the installed lexical model

Returns

Returns a dictionary Hashmap<String, String> containing information on the specified lexical model. The keys for the HashMap are: Keys
KMManager.KMKey_PackageID
KMManager.KMKey_LexicalModelID
KMManager.KMKey_LexicalModelName
KMManager.KMKey_LexicalModelVersion
KMManager.KMKey_LanguageID
KMManager.KMKey_LanguageName
KMManager.KMKey_CustomHelpLink (optional)

Description

Use this method to get details about a specified lexical model. (language and keyboard information)

Examples

Example: Using getLexicalModelInfo()

The following code illustrates the use of getLexicalModelInfo():

    // Gets information on the first installed lexical model
    HashMap<String, String> lexicalModelInfo = KMManager.getLexicalModelInfo(context, 0);