diff options
| author | Chris Banes <chrisbanes@google.com> | 2014-07-15 15:30:55 +0100 |
|---|---|---|
| committer | Chris Banes <chrisbanes@google.com> | 2014-07-25 17:11:34 +0100 |
| commit | 49c78900da0d43140fb602431fb93212bd7f6c70 (patch) | |
| tree | 26294faeb41e558f839b5fb1a0fd553c6d3bfd4d /v4/jellybean-mr1 | |
| parent | 400d2df7dfb0f72117b84854035829b6eaaf3150 (diff) | |
| download | android_frameworks_support-49c78900da0d43140fb602431fb93212bd7f6c70.tar.gz android_frameworks_support-49c78900da0d43140fb602431fb93212bd7f6c70.tar.bz2 android_frameworks_support-49c78900da0d43140fb602431fb93212bd7f6c70.zip | |
Update internal Action Bar implementation to L
This CL brings all of the internal widgets and helpers
for the Action Bar up to date with L. We now only use the
unbundled ActionBar/ToolBar implementation. This is to ease
integration and make styling simpler.
Change-Id: I267c9ee90b5707d997910c57242e26130f2dbcf8
Diffstat (limited to 'v4/jellybean-mr1')
| -rw-r--r-- | v4/jellybean-mr1/android/support/v4/view/ViewCompatJellybeanMr1.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/v4/jellybean-mr1/android/support/v4/view/ViewCompatJellybeanMr1.java b/v4/jellybean-mr1/android/support/v4/view/ViewCompatJellybeanMr1.java index 63552e4320..6832b4227e 100644 --- a/v4/jellybean-mr1/android/support/v4/view/ViewCompatJellybeanMr1.java +++ b/v4/jellybean-mr1/android/support/v4/view/ViewCompatJellybeanMr1.java @@ -55,4 +55,8 @@ class ViewCompatJellybeanMr1 { public static void setPaddingRelative(View view, int start, int top, int end, int bottom) { view.setPaddingRelative(start, top, end, bottom); } + + public static int getWindowSystemUiVisibility(View view) { + return view.getWindowSystemUiVisibility(); + } } |
