Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 18.0Version 17.0 (current version)Version 16.0Version 15.0Version 14.0

On this page

onPackageInstalled()


Summary

The onPackageInstalled() is called when a keyboard package has been installed.

Syntax

onPackageInstalled(List<HashMap<String key, String value>> keyboardsInstalled)

Parameters

keyboardsInstalled

The information dictionaries of the keyboards installed from a keyboard package with keys and values defined as List<HashMap<String key, String value>>.

Description

Implement this method to handle keyboard package installed event.

Examples

Example: Using onPackageInstalled()

The following script illustrate the use of onPackageInstalled():

    @Override
    public void onPackageInstalled(List<HashMap<String key, String value>> keyboardsInstalled) {
        // handle keyboard package installed event here
    }

See also