summaryrefslogtreecommitdiffstats
path: root/policy/src
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2011-10-17 10:26:28 -0700
committerWinson Chung <winsonc@google.com>2011-10-18 10:46:48 -0700
commita63bb84bbe98e72871c2138ab3eb517d0f9a80ef (patch)
tree15a2195ad2f68ce5180135af10cd3dcab2554047 /policy/src
parentf129988a1aa8a210dc125b0f427d848a2aeb8bb2 (diff)
downloadframeworks_base-a63bb84bbe98e72871c2138ab3eb517d0f9a80ef.zip
frameworks_base-a63bb84bbe98e72871c2138ab3eb517d0f9a80ef.tar.gz
frameworks_base-a63bb84bbe98e72871c2138ab3eb517d0f9a80ef.tar.bz2
Updating screenshot animation and behaviour. (Bug: 5333706)
- Removing the second ticker text - Adding a new animation to the status bar - Adding a large icon to the notification Change-Id: I8778178519fc72ffc299e8d624069b684475191d
Diffstat (limited to 'policy/src')
-rwxr-xr-xpolicy/src/com/android/internal/policy/impl/PhoneWindowManager.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java b/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
index 8b09e00..b9fe182 100755
--- a/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
+++ b/policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
@@ -2614,6 +2614,11 @@ public class PhoneWindowManager implements WindowManagerPolicy {
}
};
msg.replyTo = new Messenger(h);
+ msg.arg1 = msg.arg2 = 0;
+ if (mStatusBar != null && mStatusBar.isVisibleLw())
+ msg.arg1 = 1;
+ if (mNavigationBar != null && mNavigationBar.isVisibleLw())
+ msg.arg2 = 1;
try {
messenger.send(msg);
} catch (RemoteException e) {