Keyboard Support

Contact and Search

Keyman.com Homepage

Header bottom

Keyman.com

Other versions
Version 18.0

Index

On this page

KMManager.getOrientation()


Summary

The getOrientation() method returns the current orientation of the device.

Syntax

KMManager.getOrientation(Context context)
context
The context.

Returns

Returns the device orientation as an int, one of:

  • Configuration.ORIENTATION_PORTRAIT (1)
  • Configuration.ORIENTATION_LANDSCAPE (2)
  • Configuration.ORIENTATION_UNDEFINED (0)

Description

Use this method to get the current orientation of the device

Examples

Example: Using getOrientation()

The following code illustrates the use of getOrientation():

    int orientation = KMManager.getOrientation(context);