1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
__all__ = ('View', 'KeyEvent', 'Choreographer')
from jnius import JavaClass, JavaMethod, JavaStaticField, JavaStaticMethod, MetaJavaClass
class View(JavaClass, metaclass=MetaJavaClass):
"""
Represents an Android view class with constants for system UI visibility flags.
Provides direct references to various system UI visibility constants, which
are used to control the appearance of the system user interface elements
such as the status bar, navigation bar, and fullscreen modes. This class
serves as a bridge to work with Java's Android View API in Python through
a metaclass-based approach.
Attributes
----------
__javaclass__ : str
The name of the corresponding Java class used for this bridge.
SYSTEM_UI_FLAG_FULLSCREEN : JavaStaticField
Constant for enabling fullscreen mode in the system UI.
SYSTEM_UI_FLAG_HIDE_NAVIGATION : JavaStaticField
Constant for hiding the navigation bar in the system UI.
SYSTEM_UI_FLAG_IMMERSIVE : JavaStaticField
Constant for enabling immersive mode.
SYSTEM_UI_FLAG_IMMERSIVE_STICKY : JavaStaticField
Constant for enabling sticky immersive mode.
SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN : JavaStaticField
Constant for making the layout occupy the fullscreen area.
SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION : JavaStaticField
Constant for making the layout extend under the navigation bar.
SYSTEM_UI_FLAG_LAYOUT_STABLE : JavaStaticField
Constant for preventing layout changes when the system UI
visibility changes.
SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR : JavaStaticField
Constant for enabling light navigation bar mode.
SYSTEM_UI_FLAG_LIGHT_STATUS_BAR : JavaStaticField
Constant for enabling light status bar mode.
SYSTEM_UI_FLAG_LOW_PROFILE : JavaStaticField
Constant for enabling low-profile mode for system UI.
SYSTEM_UI_FLAG_VISIBLE : JavaStaticField
Constant for ensuring the system UI is visible.
SYSTEM_UI_LAYOUT_FLAGS : JavaStaticField
Combined constant for specifying multiple layout-related flags.
"""
__javaclass__ = 'android/view/View'
SYSTEM_UI_FLAG_FULLSCREEN = JavaStaticField('I')
SYSTEM_UI_FLAG_HIDE_NAVIGATION = JavaStaticField('I')
SYSTEM_UI_FLAG_IMMERSIVE = JavaStaticField('I')
SYSTEM_UI_FLAG_IMMERSIVE_STICKY = JavaStaticField('I')
SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN = JavaStaticField('I')
SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION = JavaStaticField('I')
SYSTEM_UI_FLAG_LAYOUT_STABLE = JavaStaticField('I')
SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR = JavaStaticField('I')
SYSTEM_UI_FLAG_LIGHT_STATUS_BAR = JavaStaticField('I')
SYSTEM_UI_FLAG_LOW_PROFILE = JavaStaticField('I')
SYSTEM_UI_FLAG_VISIBLE = JavaStaticField('I')
SYSTEM_UI_LAYOUT_FLAGS = JavaStaticField('I')
class KeyEvent(JavaClass, metaclass=MetaJavaClass):
"""
Represents a wrapper for the Android KeyEvent class.
This class serves as a Python representation of the Android KeyEvent Java class, providing access
to Java static fields, and facilitating interaction with Android key event constants and properties.
Attributes:
KEYCODE_BACK : int
Static field representing the key code for the "Back" button in Android.
"""
__javaclass__ = 'android/view/KeyEvent'
KEYCODE_BACK = JavaStaticField('I')
ACTION_DOWN = JavaStaticField('I')
getAction = JavaMethod('()I')
class Choreographer(JavaClass, metaclass=MetaJavaClass):
__javaclass__ = 'android/view/Choreographer'
getInstance = JavaStaticMethod('()Landroid/view/Choreographer;')
postFrameCallback = JavaMethod('(Landroid/view/Choreographer$FrameCallback;)V')
removeFrameCallback = JavaMethod('(Landroid/view/Choreographer$FrameCallback;)V')
|