diff options
| author | 2019-12-12 09:55:08 +0000 | |
|---|---|---|
| committer | 2019-12-12 09:55:08 +0000 | |
| commit | 09fa28fcbaaf3ddb2febaa928ffcbbdccd6abc9b (patch) | |
| tree | a0e64830c17740c60ceb3c6801e4556d0c96af2e | |
| parent | 7ea32155cf2f03cf490e42e715129034e926b62b (diff) | |
| parent | f43740e69cef84dbefb0ba7cbedd48489a25e779 (diff) | |
Merge "Fix crash after destroyed" into qt-qpr1-dev am: f43740e69c
Change-Id: I4d3b9c90ce380ee6d9494a68a5d5dcc116c61399
| -rw-r--r-- | core/java/android/service/autofill/augmented/FillWindow.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/service/autofill/augmented/FillWindow.java b/core/java/android/service/autofill/augmented/FillWindow.java index 6a29d485b997..5d003706ac83 100644 --- a/core/java/android/service/autofill/augmented/FillWindow.java +++ b/core/java/android/service/autofill/augmented/FillWindow.java @@ -242,6 +242,7 @@ public final class FillWindow implements AutoCloseable { synchronized (mLock) { if (mDestroyed) return; if (mUpdateCalled) { + mFillView.setOnClickListener(null); hide(); mProxy.report(AutofillProxy.REPORT_EVENT_UI_DESTROYED); } |