Added in API level 11
Deprecated in API level 30

OnSystemUiVisibilityChangeListener

interface OnSystemUiVisibilityChangeListener
android.view.View.OnSystemUiVisibilityChangeListener

Interface definition for a callback to be invoked when the status bar changes visibility. This reports global changes to the system UI state, not what the application is requesting.

Summary

Public methods
abstract Unit

Called when the status bar changes visibility because of a call to View#setSystemUiVisibility(int).

Public methods

onSystemUiVisibilityChange

Added in API level 11
abstract fun onSystemUiVisibilityChange(visibility: Int): Unit

Deprecated: Deprecated in Java.

Called when the status bar changes visibility because of a call to View#setSystemUiVisibility(int).

Parameters
visibility Int: Bitwise-or of flags SYSTEM_UI_FLAG_LOW_PROFILE, SYSTEM_UI_FLAG_HIDE_NAVIGATION, and SYSTEM_UI_FLAG_FULLSCREEN. This tells you the global state of these UI visibility flags, not what your app is currently applying.