Fixed
Status Update
Comments
il...@google.com <il...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit bc654c039fcace5c1d1182d86b7c3bec85ddd093
Author: Ian Lake <ilake@google.com>
Date: Wed Feb 27 11:24:35 2019
Prevent double onDismiss() callbacks
When cancelling a DialogFragment by using
the Dialog's dismiss() or cancel() methods,
the first callback the DialogFragment is
in onDismiss().
Avoid calling onDismiss() a second time by
special casing that scenario to differentiate
it from cases where the developer has called
DialogFragment.dismiss().
Test: new parameterized DialogFragmentDismissTest
Fixes: 126563750
Change-Id: Iffa3de801d34ad1e09c96c3931ec2bff8df4d413
A fragment/src/androidTest/java/androidx/fragment/app/DialogFragmentDismissTest.kt
M fragment/src/androidTest/java/androidx/fragment/app/DialogFragmentTest.kt
M fragment/src/main/java/androidx/fragment/app/DialogFragment.java
https://android-review.googlesource.com/913956
https://goto.google.com/android-sha1/bc654c039fcace5c1d1182d86b7c3bec85ddd093
Branch: androidx-master-dev
commit bc654c039fcace5c1d1182d86b7c3bec85ddd093
Author: Ian Lake <ilake@google.com>
Date: Wed Feb 27 11:24:35 2019
Prevent double onDismiss() callbacks
When cancelling a DialogFragment by using
the Dialog's dismiss() or cancel() methods,
the first callback the DialogFragment is
in onDismiss().
Avoid calling onDismiss() a second time by
special casing that scenario to differentiate
it from cases where the developer has called
DialogFragment.dismiss().
Test: new parameterized DialogFragmentDismissTest
Fixes: 126563750
Change-Id: Iffa3de801d34ad1e09c96c3931ec2bff8df4d413
A fragment/src/androidTest/java/androidx/fragment/app/DialogFragmentDismissTest.kt
M fragment/src/androidTest/java/androidx/fragment/app/DialogFragmentTest.kt
M fragment/src/main/java/androidx/fragment/app/DialogFragment.java
Description
Version used: 1.0.0-alpha04
When dismissing a DialogFragment by using getDialog().dismiss() or getDialog().cancel(), you get two callbacks to onDismiss(), rather than just one.