spiegel-keyman/android/docs/engine/KMManager/getOrientation.md
2024-10-31 10:08:17 +07:00

703 B

title
KMManager.getOrientation()

Summary

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

Syntax

KMManager.getOrientation(Context context)

Parameters

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);