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)

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