Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Revert "FlutterFragment predictive back" #54256

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1056,14 +1056,6 @@ public void onAttach(@NonNull Context context) {
delegate.onAttach(context);
if (getArguments().getBoolean(ARG_SHOULD_AUTOMATICALLY_HANDLE_ON_BACK_PRESSED, false)) {
requireActivity().getOnBackPressedDispatcher().addCallback(this, onBackPressedCallback);
// When Android handles a back gesture, it pops an Activity or goes back
// to the home screen. When Flutter handles a back gesture, it pops a
// route inside of the Flutter part of the app. By default, Android
// handles back gestures, so this callback is disabled. If, for example,
// the Flutter app has routes for which it wants to handle the back
// gesture, then it will enable this callback using
// setFrameworkHandlesBack.
onBackPressedCallback.setEnabled(false);
}
context.registerComponentCallbacks(this);
}
Expand Down Expand Up @@ -1671,29 +1663,16 @@ public boolean popSystemNavigator() {
// Unless we disable the callback, the dispatcher call will trigger it. This will then
// trigger the fragment's onBackPressed() implementation, which will call through to the
// dart side and likely call back through to this method, creating an infinite call loop.
boolean enabledAtStart = onBackPressedCallback.isEnabled();
if (enabledAtStart) {
onBackPressedCallback.setEnabled(false);
}
onBackPressedCallback.setEnabled(false);
activity.getOnBackPressedDispatcher().onBackPressed();
if (enabledAtStart) {
onBackPressedCallback.setEnabled(true);
}
onBackPressedCallback.setEnabled(true);
return true;
}
}
// Hook for subclass. No-op if returns false.
return false;
}

@Override
public void setFrameworkHandlesBack(boolean frameworkHandlesBack) {
if (!getArguments().getBoolean(ARG_SHOULD_AUTOMATICALLY_HANDLE_ON_BACK_PRESSED, false)) {
return;
}
onBackPressedCallback.setEnabled(frameworkHandlesBack);
}

@VisibleForTesting
@NonNull
boolean shouldDelayFirstAndroidViewDraw() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ protected FlutterFragment createFlutterFragment() {
? TransparencyMode.opaque
: TransparencyMode.transparent;
final boolean shouldDelayFirstAndroidViewDraw = renderMode == RenderMode.surface;
final boolean shouldAutomaticallyHandleOnBackPressed = true;

if (getCachedEngineId() != null) {
Log.v(
Expand All @@ -543,7 +542,6 @@ protected FlutterFragment createFlutterFragment() {
.shouldAttachEngineToActivity(shouldAttachEngineToActivity())
.destroyEngineWithFragment(shouldDestroyEngineWithHost())
.shouldDelayFirstAndroidViewDraw(shouldDelayFirstAndroidViewDraw)
.shouldAutomaticallyHandleOnBackPressed(shouldAutomaticallyHandleOnBackPressed)
.build();
} else {
Log.v(
Expand Down Expand Up @@ -579,7 +577,6 @@ protected FlutterFragment createFlutterFragment() {
.transparencyMode(transparencyMode)
.shouldAttachEngineToActivity(shouldAttachEngineToActivity())
.shouldDelayFirstAndroidViewDraw(shouldDelayFirstAndroidViewDraw)
.shouldAutomaticallyHandleOnBackPressed(shouldAutomaticallyHandleOnBackPressed)
.build();
}

Expand All @@ -595,7 +592,6 @@ protected FlutterFragment createFlutterFragment() {
.transparencyMode(transparencyMode)
.shouldAttachEngineToActivity(shouldAttachEngineToActivity())
.shouldDelayFirstAndroidViewDraw(shouldDelayFirstAndroidViewDraw)
.shouldAutomaticallyHandleOnBackPressed(shouldAutomaticallyHandleOnBackPressed)
.build();
}
}
Expand All @@ -620,6 +616,12 @@ protected void onNewIntent(@NonNull Intent intent) {
super.onNewIntent(intent);
}

@Override
@SuppressWarnings("MissingSuperCall")
public void onBackPressed() {
flutterFragment.onBackPressed();
}

@Override
public void onRequestPermissionsResult(
int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ private FragmentActivity getMockFragmentActivity() {
}

@Test
public void itDelegatesOnBackPressedWithSetFrameworkHandlesBack() {
public void itDelegatesOnBackPressedAutomaticallyWhenEnabled() {
// We need to mock FlutterJNI to avoid triggering native code.
FlutterJNI flutterJNI = mock(FlutterJNI.class);
when(flutterJNI.isAttached()).thenReturn(true);
Expand All @@ -301,8 +301,6 @@ public void itDelegatesOnBackPressedWithSetFrameworkHandlesBack() {

FlutterFragment fragment =
FlutterFragment.withCachedEngine("my_cached_engine")
// This enables the use of onBackPressedCallback, which is what
// sends backs to the framework if setFrameworkHandlesBack is true.
.shouldAutomaticallyHandleOnBackPressed(true)
.build();
FragmentActivity activity = getMockFragmentActivity();
Expand All @@ -320,15 +318,8 @@ public void itDelegatesOnBackPressedWithSetFrameworkHandlesBack() {
TestDelegateFactory delegateFactory = new TestDelegateFactory(mockDelegate);
fragment.setDelegateFactory(delegateFactory);

// Calling onBackPressed now will still be handled by Android (the default),
// until setFrameworkHandlesBack is set to true.
activity.getOnBackPressedDispatcher().onBackPressed();
verify(mockDelegate, times(0)).onBackPressed();

// Setting setFrameworkHandlesBack to true means the delegate will receive
// the back and Android won't handle it.
fragment.setFrameworkHandlesBack(true);
activity.getOnBackPressedDispatcher().onBackPressed();
verify(mockDelegate, times(1)).onBackPressed();
}

Expand Down Expand Up @@ -370,20 +361,10 @@ public void handleOnBackPressed() {
TestDelegateFactory delegateFactory = new TestDelegateFactory(mockDelegate);
fragment.setDelegateFactory(delegateFactory);

assertTrue(callback.isEnabled());

assertTrue(fragment.popSystemNavigator());

verify(mockDelegate, never()).onBackPressed();
assertTrue(onBackPressedCalled.get());
assertTrue(callback.isEnabled());

callback.setEnabled(false);
assertFalse(callback.isEnabled());
assertTrue(fragment.popSystemNavigator());

verify(mockDelegate, never()).onBackPressed();
assertFalse(callback.isEnabled());
}

@Test
Expand Down