Merge "Set charging animation windows as trusted overlays so that touches can pass through." into sc-dev

This commit is contained in:
Shan Huang
2021-04-14 09:12:50 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 0 deletions

View File

@@ -121,6 +121,7 @@ public class WirelessChargingAnimation {
params.setFitInsetsTypes(0 /* ignore all system bar insets */);
params.flags = WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
| WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE;
params.setTrustedOverlay();
if (looper == null) {
// Use Looper.myLooper() if looper is not specified.

View File

@@ -58,6 +58,7 @@ class WiredChargingRippleController @Inject constructor(
title = "Wired Charging Animation"
flags = (WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
or WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE)
setTrustedOverlay()
}
@VisibleForTesting