summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI
diff options
context:
space:
mode:
authorJorim Jaggi <jjaggi@google.com>2015-02-02 19:25:34 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-02-02 19:25:34 +0000
commit2ffb3400f7922aba597b61cea91b82bcfc3d7e7d (patch)
treedff14dc219a02d67878c9ba39edb4ac7793d6b66 /packages/SystemUI
parent235f60bc134646d1ce18ab872b982ff63b14845e (diff)
parent515148dcaaf5b63e69998d67958829d4347071ec (diff)
downloadframeworks_base-2ffb3400f7922aba597b61cea91b82bcfc3d7e7d.zip
frameworks_base-2ffb3400f7922aba597b61cea91b82bcfc3d7e7d.tar.gz
frameworks_base-2ffb3400f7922aba597b61cea91b82bcfc3d7e7d.tar.bz2
am 515148dc: Merge "Send accessibility event when bouncer is shown" into lmp-mr1-dev
* commit '515148dcaaf5b63e69998d67958829d4347071ec': Send accessibility event when bouncer is shown
Diffstat (limited to 'packages/SystemUI')
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java
index 5bc1321..d0fe32e 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/KeyguardBouncer.java
@@ -22,6 +22,7 @@ import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
+import android.view.accessibility.AccessibilityEvent;
import com.android.internal.widget.LockPatternUtils;
import com.android.keyguard.KeyguardViewBase;
@@ -86,6 +87,7 @@ public class KeyguardBouncer {
mKeyguardView.onResume();
mKeyguardView.startAppearAnimation();
mShowingSoon = false;
+ mKeyguardView.sendAccessibilityEvent(AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED);
}
};