Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

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

Index

On this page

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

KMManager.getKeyboardHeight()


Summary

The getKeyboardHeight() method returns the height of the keyboard frame.

Syntax

KMManager.getKeyboardHeight(Context context)

or

KMManager.getKeyboardHeight(Context context, int orientation)

Parameters

context
The context.
orientation (Optional)
Accepts a screen orientation value. This is most useful if you want to get the size of the keyboard in the other (non-current) orientation. If orientation parameter is not passed in, keyboard height is returned for the current device orientation.

Returns

Returns the height of the keyboard frame in density-independent pixels (dp).

Description

Use this method to get the height of the keyboard frame.

Examples

Example: Using getKeyboardHeight()

The following script illustrate the use of getKeyboardHeight():

    int keyboardHeight = KMManager.getKeyboardHeight(this);

or

    import android.content.res.Configuration;
    ...
    // Get the current Keyman keyboard height for landscape mode.

    int keyboardHeightLandscape = KMManager.getKeyboardHeight(this, Configuration.ORIENTATION_LANDSCAPE);

See also