diff options
| author | Daniel Sandler <dsandler@android.com> | 2012-10-19 16:44:15 -0400 |
|---|---|---|
| committer | Daniel Sandler <dsandler@android.com> | 2012-10-19 16:48:12 -0400 |
| commit | d5483c3157a28e2ebc05a0c918df8a2be0a7fc89 (patch) | |
| tree | 7dfcfb6021bd0e0caf60be9f5a275203b961c202 /core/java/android/view | |
| parent | a1f739ea83b6d770b8469ae1c2c4161f6fe96334 (diff) | |
| download | frameworks_base-d5483c3157a28e2ebc05a0c918df8a2be0a7fc89.zip frameworks_base-d5483c3157a28e2ebc05a0c918df8a2be0a7fc89.tar.gz frameworks_base-d5483c3157a28e2ebc05a0c918df8a2be0a7fc89.tar.bz2 | |
New lockscreen: allow search gesture from nav bar.
Show a lights-out pip if home is invisible but search is
still OK.
Change-Id: Ifc69c12296cc8e8cf7c89dd06173d7abf499a878
Diffstat (limited to 'core/java/android/view')
| -rw-r--r-- | core/java/android/view/View.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index b36db7f..6360242 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -2452,6 +2452,17 @@ public class View implements Drawable.Callback, KeyEvent.Callback, /** * @hide + * + * NOTE: This flag may only be used in subtreeSystemUiVisibility. It is masked + * out of the public fields to keep the undefined bits out of the developer's way. + * + * Flag to disable the global search gesture. Don't use this + * unless you're a special part of the system UI (i.e., setup wizard, keyguard). + */ + public static final int STATUS_BAR_DISABLE_SEARCH = 0x02000000; + + /** + * @hide */ public static final int PUBLIC_STATUS_BAR_VISIBILITY_MASK = 0x0000FFFF; |
