Fingerprint enrolling should update UI while in multi-window mode

Fixes: 67652597

Test: Try enrolling fingerprint while in multi-window mode, with and
      without focusing the FP Settings activity

Test: Enrolling doesn't occur when FP Settings activity is not shown
      (ie home button pressed)

Change-Id: Ie467da767ae36eb8d3c2b956754272749dffb43fu
This commit is contained in:
Kevin Chyn
2017-10-13 15:12:40 -07:00
parent aad3b1cef2
commit 5132e29d6e

View File

@@ -165,22 +165,6 @@ public class FingerprintEnrollEnrolling extends FingerprintEnrollBase
startIconAnimation();
}
@Override
protected void onResume() {
super.onResume();
if (mSidecar != null) {
mSidecar.setListener(this);
}
}
@Override
protected void onPause() {
super.onPause();
if (mSidecar != null) {
mSidecar.setListener(null);
}
}
private void startIconAnimation() {
mIconAnimationDrawable.start();
}