diff options
| author | 2019-12-12 09:33:41 +0000 | |
|---|---|---|
| committer | 2019-12-12 09:33:41 +0000 | |
| commit | f43740e69cef84dbefb0ba7cbedd48489a25e779 (patch) | |
| tree | bb2ec5e81ab8a2fc07b97f3e41141ded389cd1a8 | |
| parent | 891f3708ad7c3f25b4c10a58409093352a79007c (diff) | |
| parent | 66121902a51b67ef29bd24cc42b5b6201fa52ad6 (diff) | |
Merge "Fix crash after destroyed" into qt-qpr1-dev
| -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); } |