diff options
author | John Spurlock <jspurlock@google.com> | 2013-10-09 12:35:52 -0400 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2013-10-09 12:35:52 -0400 |
commit | a12dccc0981cbde289c678c54aa57d9b86edfb1f (patch) | |
tree | ef258db6554c914d98586ac814598cd5b8248374 /api | |
parent | dcd05b440d81ededd567a417a6e10a02ccdfa07b (diff) | |
download | frameworks_base-a12dccc0981cbde289c678c54aa57d9b86edfb1f.zip frameworks_base-a12dccc0981cbde289c678c54aa57d9b86edfb1f.tar.gz frameworks_base-a12dccc0981cbde289c678c54aa57d9b86edfb1f.tar.bz2 |
Introduce View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY.
The existing View.SYSTEM_UI_FLAG_IMMERSIVE flag will be somewhat
redefined. Swiping will clear the flags, revealing the normal bars.
The new View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY flag will enable
hideybars - the auto-hiding, semi-transparent bar mode.
Bug:11062108
Change-Id: Ibf8be9072f0075953baa4580cd976e7562d44455
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 9251d39..ba4949b 100644 --- a/api/current.txt +++ b/api/current.txt @@ -28397,6 +28397,7 @@ package android.view { field public static final int SYSTEM_UI_FLAG_FULLSCREEN = 4; // 0x4 field public static final int SYSTEM_UI_FLAG_HIDE_NAVIGATION = 2; // 0x2 field public static final int SYSTEM_UI_FLAG_IMMERSIVE = 2048; // 0x800 + field public static final int SYSTEM_UI_FLAG_IMMERSIVE_STICKY = 4096; // 0x1000 field public static final int SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN = 1024; // 0x400 field public static final int SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION = 512; // 0x200 field public static final int SYSTEM_UI_FLAG_LAYOUT_STABLE = 256; // 0x100 |