Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public static interface

View.OnSystemUiVisibilityChangeListener

android.view.View.OnSystemUiVisibilityChangeListener

Class Overview

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 void onSystemUiVisibilityChange (int visibility)
Called when the status bar changes visibility because of a call to setSystemUiVisibility(int) .

Public Methods

public abstract void onSystemUiVisibilityChange (int visibility)

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

Parameters
visibility 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.