Merge "Removing private system ui flags from status bar flags logic." into nyc-mr1-dev

This commit is contained in:
TreeHugger Robot
2016-09-20 23:00:33 +00:00
committed by Android (Google) Code Review
12 changed files with 95 additions and 95 deletions

View File

@@ -330,6 +330,16 @@ interface IWindowManager
*/
oneway void statusBarVisibilityChanged(int visibility);
/**
* Called by System UI to notify of changes to the visibility of Recents.
*/
oneway void setRecentsVisibility(boolean visible);
/**
* Called by System UI to notify of changes to the visibility of PIP.
*/
oneway void setTvPipVisibility(boolean visible);
/**
* Device has a software navigation bar (separate from the status bar).
*/

View File

@@ -3093,20 +3093,6 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
*/
public static final int NAVIGATION_BAR_TRANSLUCENT = 0x80000000;
/**
* @hide
*
* Whether Recents is visible or not.
*/
public static final int RECENT_APPS_VISIBLE = 0x00004000;
/**
* @hide
*
* Whether the TV's picture-in-picture is visible or not.
*/
public static final int TV_PICTURE_IN_PICTURE_VISIBLE = 0x00010000;
/**
* @hide
*

View File

@@ -1305,6 +1305,16 @@ public interface WindowManagerPolicy {
*/
public int adjustSystemUiVisibilityLw(int visibility);
/**
* Called by System UI to notify of changes to the visibility of Recents.
*/
public void setRecentsVisibilityLw(boolean visible);
/**
* Called by System UI to notify of changes to the visibility of PIP.
*/
public void setTvPipVisibilityLw(boolean visible);
/**
* Specifies whether there is an on-screen navigation bar separate from the status bar.
*/