1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
|
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.window;
import static android.window.SystemOverrideOnBackInvokedCallback.OVERRIDE_UNDEFINED;
import static com.android.window.flags.Flags.predictiveBackSystemOverrideCallback;
import static com.android.window.flags.Flags.predictiveBackPrioritySystemNavigationObserver;
import static com.android.window.flags.Flags.predictiveBackTimestampApi;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.app.Activity;
import android.content.Context;
import android.content.ContextWrapper;
import android.content.pm.ActivityInfo;
import android.content.pm.ApplicationInfo;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.os.Handler;
import android.os.Looper;
import android.os.RemoteException;
import android.os.SystemProperties;
import android.text.TextUtils;
import android.util.Log;
import android.util.TypedValue;
import android.view.IWindow;
import android.view.IWindowSession;
import android.view.ImeBackAnimationController;
import android.view.MotionEvent;
import android.view.ViewRootImpl;
import androidx.annotation.VisibleForTesting;
import com.android.internal.R;
import com.android.internal.annotations.GuardedBy;
import java.io.PrintWriter;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Objects;
import java.util.TreeMap;
import java.util.function.BooleanSupplier;
import java.util.function.Supplier;
/**
* Provides window based implementation of {@link OnBackInvokedDispatcher}.
* <p>
* Callbacks with higher priorities receive back dispatching first.
* Within the same priority, callbacks receive back dispatching in the reverse order
* in which they are added.
* <p>
* When the top priority callback is updated, the new callback is propagated to the Window Manager
* if the window the instance is associated with has been attached. It is allowed to register /
* unregister {@link OnBackInvokedCallback}s before the window is attached, although
* callbacks will not receive dispatches until window attachment.
*
* @hide
*/
public class WindowOnBackInvokedDispatcher implements OnBackInvokedDispatcher {
private IWindowSession mWindowSession;
private IWindow mWindow;
private ViewRootImpl mViewRoot;
@VisibleForTesting
public final BackTouchTracker mTouchTracker = new BackTouchTracker();
@VisibleForTesting
public final BackProgressAnimator mProgressAnimator = new BackProgressAnimator();
// The handler to run callbacks on.
// This should be on the same thread the ViewRootImpl holding this instance is created on.
@NonNull
private final Handler mHandler;
private static final String TAG = "WindowOnBackDispatcher";
private static final boolean ENABLE_PREDICTIVE_BACK = SystemProperties
.getInt("persist.wm.debug.predictive_back", 1) != 0;
private static final boolean ALWAYS_ENFORCE_PREDICTIVE_BACK = SystemProperties
.getInt("persist.wm.debug.predictive_back_always_enforce", 0) != 0;
private static final boolean PREDICTIVE_BACK_FALLBACK_WINDOW_ATTRIBUTE =
SystemProperties.getInt("persist.wm.debug.predictive_back_fallback_window_attribute", 0)
!= 0;
@Nullable
private ImeOnBackInvokedDispatcher mImeDispatcher;
@Nullable
private ImeBackAnimationController mImeBackAnimationController;
@GuardedBy("mLock")
/** Convenience hashmap to quickly decide if a callback has been added. */
private final HashMap<OnBackInvokedCallback, Integer> mAllCallbacks = new HashMap<>();
/** Holds all callbacks by priorities. */
@VisibleForTesting
@GuardedBy("mLock")
public final TreeMap<Integer, ArrayList<OnBackInvokedCallback>>
mOnBackInvokedCallbacks = new TreeMap<>();
@VisibleForTesting
public OnBackInvokedCallback mSystemNavigationObserverCallback = null;
private Checker mChecker;
private final Object mLock = new Object();
// The threshold for back swipe full progress.
private float mBackSwipeLinearThreshold;
private float mNonLinearProgressFactor;
public WindowOnBackInvokedDispatcher(@NonNull Context context, Looper looper) {
mChecker = new Checker(context);
mHandler = new Handler(looper);
}
/** Updates the dispatcher state on a new {@link MotionEvent}. */
public void onMotionEvent(MotionEvent ev) {
if (!isBackGestureInProgress() || ev == null || ev.getAction() != MotionEvent.ACTION_MOVE) {
return;
}
mTouchTracker.update(ev.getX(), ev.getY());
if (mTouchTracker.shouldUpdateStartLocation()) {
// Reset the start location on the first event after starting back, so that
// the beginning of the animation feels smooth.
mTouchTracker.updateStartLocation();
}
if (!mProgressAnimator.isBackAnimationInProgress()) {
return;
}
final BackMotionEvent backEvent = mTouchTracker.createProgressEvent();
mProgressAnimator.onBackProgressed(backEvent);
}
/**
* Sends the pending top callback (if one exists) to WM when the view root
* is attached a window.
*/
public void attachToWindow(@NonNull IWindowSession windowSession, @NonNull IWindow window,
@Nullable ViewRootImpl viewRoot,
@Nullable ImeBackAnimationController imeBackAnimationController) {
synchronized (mLock) {
mWindowSession = windowSession;
mWindow = window;
mViewRoot = viewRoot;
mImeBackAnimationController = imeBackAnimationController;
if (!mAllCallbacks.isEmpty()) {
setTopOnBackInvokedCallback(getTopCallback());
}
}
}
/** Detaches the dispatcher instance from its window. */
public void detachFromWindow() {
synchronized (mLock) {
clear();
mWindow = null;
mWindowSession = null;
mViewRoot = null;
mImeBackAnimationController = null;
}
}
// TODO: Take an Executor for the callback to run on.
@Override
public void registerOnBackInvokedCallback(
@Priority int priority, @NonNull OnBackInvokedCallback callback) {
if (mChecker.checkApplicationCallbackRegistration(priority, callback)) {
registerOnBackInvokedCallbackUnchecked(callback, priority);
}
}
private void registerSystemNavigationObserverCallback(@NonNull OnBackInvokedCallback callback) {
synchronized (mLock) {
// If callback has already been added as regular callback, remove it.
if (mAllCallbacks.containsKey(callback)) {
if (DEBUG) {
Log.i(TAG, "Callback already added. Removing and re-adding it as "
+ "system-navigation-observer-callback.");
}
removeCallbackInternal(callback);
}
mSystemNavigationObserverCallback = callback;
}
}
/**
* Register a callback bypassing platform checks. This is used to register compatibility
* callbacks.
*/
public void registerOnBackInvokedCallbackUnchecked(
@NonNull OnBackInvokedCallback callback, @Priority int priority) {
synchronized (mLock) {
if (mImeDispatcher != null) {
mImeDispatcher.registerOnBackInvokedCallback(priority, callback);
return;
}
if (predictiveBackPrioritySystemNavigationObserver()
&& predictiveBackSystemOverrideCallback()) {
if (priority == PRIORITY_SYSTEM_NAVIGATION_OBSERVER
&& callback instanceof SystemOverrideOnBackInvokedCallback) {
Log.e(TAG, "System override callbacks cannot be registered to "
+ "NAVIGATION_OBSERVER");
return;
}
}
if (predictiveBackPrioritySystemNavigationObserver()) {
if (priority == PRIORITY_SYSTEM_NAVIGATION_OBSERVER) {
registerSystemNavigationObserverCallback(callback);
return;
}
}
if (callback instanceof ImeOnBackInvokedDispatcher.ImeOnBackInvokedCallback) {
if (callback instanceof ImeOnBackInvokedDispatcher.DefaultImeOnBackAnimationCallback
&& mImeBackAnimationController != null) {
// register ImeBackAnimationController instead to play predictive back animation
callback = mImeBackAnimationController;
}
}
if (!mOnBackInvokedCallbacks.containsKey(priority)) {
mOnBackInvokedCallbacks.put(priority, new ArrayList<>());
}
ArrayList<OnBackInvokedCallback> callbacks = mOnBackInvokedCallbacks.get(priority);
// If callback has already been added, remove it and re-add it.
if (mAllCallbacks.containsKey(callback)) {
if (DEBUG) {
Log.i(TAG, "Callback already added. Removing and re-adding it.");
}
Integer prevPriority = mAllCallbacks.get(callback);
mOnBackInvokedCallbacks.get(prevPriority).remove(callback);
}
if (mSystemNavigationObserverCallback == callback) {
mSystemNavigationObserverCallback = null;
if (DEBUG) {
Log.i(TAG, "Callback already registered (as system-navigation-observer "
+ "callback). Removing and re-adding it.");
}
}
OnBackInvokedCallback previousTopCallback = getTopCallback();
callbacks.add(callback);
mAllCallbacks.put(callback, priority);
if (previousTopCallback == null
|| (previousTopCallback != callback
&& mAllCallbacks.get(previousTopCallback) <= priority)) {
setTopOnBackInvokedCallback(callback);
}
}
}
@Override
public void unregisterOnBackInvokedCallback(@NonNull OnBackInvokedCallback callback) {
synchronized (mLock) {
if (mImeDispatcher != null) {
mImeDispatcher.unregisterOnBackInvokedCallback(callback);
return;
}
if (mSystemNavigationObserverCallback == callback) {
mSystemNavigationObserverCallback = null;
return;
}
if (callback instanceof ImeOnBackInvokedDispatcher.DefaultImeOnBackAnimationCallback) {
callback = mImeBackAnimationController;
}
if (!mAllCallbacks.containsKey(callback)) {
if (DEBUG) {
Log.i(TAG, "Callback not found. returning...");
}
return;
}
removeCallbackInternal(callback);
}
}
private void removeCallbackInternal(@NonNull OnBackInvokedCallback callback) {
OnBackInvokedCallback previousTopCallback = getTopCallback();
Integer priority = mAllCallbacks.get(callback);
ArrayList<OnBackInvokedCallback> callbacks = mOnBackInvokedCallbacks.get(priority);
callbacks.remove(callback);
if (callbacks.isEmpty()) {
mOnBackInvokedCallbacks.remove(priority);
}
mAllCallbacks.remove(callback);
// Re-populate the top callback to WM if the removed callback was previously the top
// one.
if (previousTopCallback == callback) {
// We should call onBackCancelled() when an active callback is removed from
// dispatcher.
mProgressAnimator.removeOnBackCancelledFinishCallback();
mProgressAnimator.removeOnBackInvokedFinishCallback();
sendCancelledIfInProgress(callback);
mHandler.post(mProgressAnimator::reset);
setTopOnBackInvokedCallback(getTopCallback());
}
}
/**
* Indicates if a user gesture is currently in progress.
*/
public boolean isBackGestureInProgress() {
synchronized (mLock) {
return mTouchTracker.isActive();
}
}
/**
* Returns whether current app should not receive motion event.
*/
public boolean isInterceptedMotionEvent() {
synchronized (mLock) {
return mTouchTracker.isInterceptedMotionEvent();
}
}
/**
* Marks the app will not receive motion event from current gesture.
*/
public void setMotionEventIntercepted() {
synchronized (mLock) {
mTouchTracker.setMotionEventIntercepted();
}
}
private void sendCancelledIfInProgress(@NonNull OnBackInvokedCallback callback) {
boolean isInProgress = mProgressAnimator.isBackAnimationInProgress();
if (isInProgress && callback instanceof OnBackAnimationCallback) {
OnBackAnimationCallback animatedCallback = (OnBackAnimationCallback) callback;
animatedCallback.onBackCancelled();
if (DEBUG) {
Log.d(TAG, "sendCancelIfRunning: callback canceled");
}
}
}
@Override
public void registerSystemOnBackInvokedCallback(@NonNull OnBackInvokedCallback callback) {
registerOnBackInvokedCallbackUnchecked(callback, OnBackInvokedDispatcher.PRIORITY_SYSTEM);
}
/** Clears all registered callbacks on the instance. */
public void clear() {
synchronized (mLock) {
if (mImeDispatcher != null) {
mImeDispatcher.clear();
mImeDispatcher = null;
}
if (!mAllCallbacks.isEmpty()) {
OnBackInvokedCallback topCallback = getTopCallback();
if (topCallback != null) {
sendCancelledIfInProgress(topCallback);
} else {
// Should not be possible
Log.e(TAG, "There is no topCallback, even if mAllCallbacks is not empty");
}
// Clear binder references in WM.
setTopOnBackInvokedCallback(null);
}
// We should also stop running animations since all callbacks have been removed.
// note: mSpring.skipToEnd(), in ProgressAnimator.reset(), requires the main handler.
mHandler.post(mProgressAnimator::reset);
mAllCallbacks.clear();
mOnBackInvokedCallbacks.clear();
mSystemNavigationObserverCallback = null;
}
}
private boolean callOnKeyPreIme() {
if (mViewRoot != null && !isOnBackInvokedCallbackEnabled()) {
return mViewRoot.injectBackKeyEvents(/*preImeOnly*/ true);
} else {
return false;
}
}
/**
* Tries to call {@link OnBackInvokedCallback#onBackInvoked} on the system navigation observer
* callback (if one is set and if the top-most regular callback has
* {@link OnBackInvokedDispatcher#PRIORITY_SYSTEM})
*/
public void tryInvokeSystemNavigationObserverCallback() {
OnBackInvokedCallback topCallback = getTopCallback();
Integer callbackPriority = mAllCallbacks.getOrDefault(topCallback, null);
final boolean isSystemOverride = topCallback instanceof SystemOverrideOnBackInvokedCallback;
if ((callbackPriority != null && callbackPriority == PRIORITY_SYSTEM) || isSystemOverride) {
invokeSystemNavigationObserverCallback();
}
}
private void invokeSystemNavigationObserverCallback() {
if (mSystemNavigationObserverCallback != null) {
mSystemNavigationObserverCallback.onBackInvoked();
}
}
private void setTopOnBackInvokedCallback(@Nullable OnBackInvokedCallback callback) {
if (mWindowSession == null || mWindow == null) {
return;
}
try {
OnBackInvokedCallbackInfo callbackInfo = null;
if (callback != null) {
int priority = mAllCallbacks.get(callback);
int overrideAnimation = OVERRIDE_UNDEFINED;
if (callback instanceof SystemOverrideOnBackInvokedCallback) {
overrideAnimation = ((SystemOverrideOnBackInvokedCallback) callback)
.overrideBehavior();
}
final boolean isSystemCallback = priority == PRIORITY_SYSTEM
|| overrideAnimation != OVERRIDE_UNDEFINED;
final IOnBackInvokedCallback iCallback = new OnBackInvokedCallbackWrapper(callback,
mTouchTracker, mProgressAnimator, mHandler, this::callOnKeyPreIme,
this::invokeSystemNavigationObserverCallback,
isSystemCallback /*isSystemCallback*/);
callbackInfo = new OnBackInvokedCallbackInfo(
iCallback,
priority,
callback instanceof OnBackAnimationCallback,
overrideAnimation);
}
Log.d(TAG, "setTopOnBackInvokedCallback (unwrapped): " + callback);
mWindowSession.setOnBackInvokedCallbackInfo(mWindow, callbackInfo);
} catch (RemoteException e) {
Log.e(TAG, "Failed to set OnBackInvokedCallback to WM. Error: " + e);
}
}
public OnBackInvokedCallback getTopCallback() {
synchronized (mLock) {
if (mAllCallbacks.isEmpty()) {
return null;
}
for (Integer priority : mOnBackInvokedCallbacks.descendingKeySet()) {
ArrayList<OnBackInvokedCallback> callbacks = mOnBackInvokedCallbacks.get(priority);
if (!callbacks.isEmpty()) {
return callbacks.get(callbacks.size() - 1);
}
}
}
return null;
}
/**
* The {@link Context} in ViewRootImp and Activity could be different, this will make sure it
* could update the checker condition base on the real context when binding the proxy
* dispatcher in PhoneWindow.
*/
public void updateContext(@NonNull Context context) {
mChecker = new Checker(context);
// Set swipe threshold values.
Resources res = context.getResources();
mBackSwipeLinearThreshold =
res.getDimension(R.dimen.navigation_edge_action_progress_threshold);
TypedValue typedValue = new TypedValue();
res.getValue(R.dimen.back_progress_non_linear_factor, typedValue, true);
mNonLinearProgressFactor = typedValue.getFloat();
onConfigurationChanged(context.getResources().getConfiguration());
}
/** Updates the threshold values for computing progress. */
public void onConfigurationChanged(Configuration configuration) {
float maxDistance = configuration.windowConfiguration.getMaxBounds().width();
float linearDistance = Math.min(maxDistance, mBackSwipeLinearThreshold);
mTouchTracker.setProgressThresholds(
linearDistance, maxDistance, mNonLinearProgressFactor);
}
/**
* Returns false if the legacy back behavior should be used.
*/
public boolean isOnBackInvokedCallbackEnabled() {
final Context hostContext = mChecker.getContext();
if (hostContext == null) {
Log.w(TAG, "OnBackInvokedCallback is disabled, host context is removed!");
return false;
}
return isOnBackInvokedCallbackEnabled(hostContext);
}
/**
* Dump information about this WindowOnBackInvokedDispatcher
* @param prefix the prefix that will be prepended to each line of the produced output
* @param writer the writer that will receive the resulting text
*/
public void dump(String prefix, PrintWriter writer) {
String innerPrefix = prefix + " ";
writer.println(prefix + "WindowOnBackDispatcher:");
synchronized (mLock) {
if (mAllCallbacks.isEmpty()) {
writer.println(prefix + "<None>");
return;
}
writer.println(innerPrefix + "Top Callback: " + getTopCallback());
writer.println(innerPrefix + "Callbacks: ");
mAllCallbacks.forEach((callback, priority) -> {
writer.println(innerPrefix + " Callback: " + callback + " Priority=" + priority);
});
}
}
private static class OnBackInvokedCallbackWrapper extends IOnBackInvokedCallback.Stub {
@NonNull
private final WeakReference<OnBackInvokedCallback> mCallback;
@NonNull
private final BackProgressAnimator mProgressAnimator;
@NonNull
private final BackTouchTracker mTouchTracker;
@NonNull
private final Handler mHandler;
@NonNull
private final BooleanSupplier mOnKeyPreIme;
@NonNull
private final Runnable mSystemNavigationObserverCallbackRunnable;
private final boolean mIsSystemCallback;
OnBackInvokedCallbackWrapper(
@NonNull OnBackInvokedCallback callback,
@NonNull BackTouchTracker touchTracker,
@NonNull BackProgressAnimator progressAnimator,
@NonNull Handler handler,
@NonNull BooleanSupplier onKeyPreIme,
@NonNull Runnable systemNavigationObserverCallbackRunnable,
boolean isSystemCallback
) {
mCallback = new WeakReference<>(callback);
mTouchTracker = touchTracker;
mProgressAnimator = progressAnimator;
mHandler = handler;
mOnKeyPreIme = onKeyPreIme;
mSystemNavigationObserverCallbackRunnable = systemNavigationObserverCallbackRunnable;
mIsSystemCallback = isSystemCallback;
}
@Override
public void onBackStarted(BackMotionEvent backEvent) {
mHandler.post(() -> {
final OnBackAnimationCallback callback = getBackAnimationCallback();
// reset progress animator before dispatching onBackStarted to callback. This
// ensures that onBackCancelled (of a previous gesture) is always dispatched
// before onBackStarted
if (callback != null && mProgressAnimator.isBackAnimationInProgress()) {
mProgressAnimator.reset();
}
mTouchTracker.setState(BackTouchTracker.TouchTrackerState.ACTIVE);
mTouchTracker.setShouldUpdateStartLocation(true);
mTouchTracker.setGestureStartLocation(
backEvent.getTouchX(), backEvent.getTouchY(), backEvent.getSwipeEdge());
if (callback != null) {
callback.onBackStarted(BackEvent.fromBackMotionEvent(backEvent));
mProgressAnimator.onBackStarted(backEvent, callback::onBackProgressed);
}
});
}
@Override
public void setHandoffHandler(IBackAnimationHandoffHandler handoffHandler) {
// no-op
}
@Override
public void onBackProgressed(BackMotionEvent backEvent) {
// This is only called in some special cases such as when activity embedding is active
// or when the activity is letterboxed. Otherwise mProgressAnimator#onBackProgressed is
// called from WindowOnBackInvokedDispatcher#onMotionEvent
mHandler.post(() -> {
if (getBackAnimationCallback() != null) {
mProgressAnimator.onBackProgressed(backEvent);
}
});
}
@Override
public void onBackCancelled() {
mHandler.post(() -> {
final OnBackAnimationCallback callback = getBackAnimationCallback();
mTouchTracker.reset();
if (callback == null) return;
mProgressAnimator.onBackCancelled(callback::onBackCancelled);
});
}
@Override
public void onBackInvoked() throws RemoteException {
mHandler.post(() -> {
mTouchTracker.reset();
if (consumedByOnKeyPreIme()) return;
boolean isInProgress = mProgressAnimator.isBackAnimationInProgress();
final OnBackInvokedCallback callback = mCallback.get();
if (callback == null) {
mProgressAnimator.reset();
Log.d(TAG, "Trying to call onBackInvoked() on a null callback reference.");
return;
}
if (callback instanceof OnBackAnimationCallback && !isInProgress) {
Log.w(TAG, "ProgressAnimator was not in progress, skip onBackInvoked().");
return;
}
OnBackAnimationCallback animationCallback = getBackAnimationCallback();
if (animationCallback != null
&& !(callback instanceof ImeBackAnimationController)
&& !predictiveBackTimestampApi()) {
mProgressAnimator.onBackInvoked(() -> {
if (mIsSystemCallback) {
mSystemNavigationObserverCallbackRunnable.run();
}
callback.onBackInvoked();
});
} else {
mProgressAnimator.reset();
if (mIsSystemCallback) {
mSystemNavigationObserverCallbackRunnable.run();
}
callback.onBackInvoked();
}
});
}
private boolean consumedByOnKeyPreIme() {
final OnBackInvokedCallback callback = mCallback.get();
if (callback instanceof ImeBackAnimationController
|| callback instanceof ImeOnBackInvokedDispatcher.ImeOnBackInvokedCallback) {
// call onKeyPreIme API if the current callback is an IME callback and the app has
// not set enableOnBackInvokedCallback="true"
try {
boolean consumed = mOnKeyPreIme.getAsBoolean();
if (consumed) {
// back event intercepted by app in onKeyPreIme -> cancel the IME animation.
final OnBackAnimationCallback animationCallback =
getBackAnimationCallback();
if (animationCallback != null) {
mProgressAnimator.onBackCancelled(animationCallback::onBackCancelled);
}
return true;
}
} catch (Exception e) {
Log.d(TAG, "Failed to call onKeyPreIme", e);
}
}
return false;
}
@Override
public void setTriggerBack(boolean triggerBack) throws RemoteException {
mTouchTracker.setTriggerBack(triggerBack);
}
@Nullable
private OnBackAnimationCallback getBackAnimationCallback() {
OnBackInvokedCallback callback = mCallback.get();
return callback instanceof OnBackAnimationCallback ? (OnBackAnimationCallback) callback
: null;
}
}
/**
* Returns false if the legacy back behavior should be used.
* <p>
* Legacy back behavior dispatches KEYCODE_BACK instead of invoking the application registered
* {@link OnBackInvokedCallback}.
*/
public static boolean isOnBackInvokedCallbackEnabled(@NonNull Context context) {
final Context originalContext = context;
while ((context instanceof ContextWrapper) && !(context instanceof Activity)) {
context = ((ContextWrapper) context).getBaseContext();
}
final ActivityInfo activityInfo = (context instanceof Activity)
? ((Activity) context).getActivityInfo() : null;
final ApplicationInfo applicationInfo = context.getApplicationInfo();
return WindowOnBackInvokedDispatcher
.isOnBackInvokedCallbackEnabled(activityInfo, applicationInfo,
() -> originalContext);
}
@Override
public void setImeOnBackInvokedDispatcher(
@NonNull ImeOnBackInvokedDispatcher imeDispatcher) {
mImeDispatcher = imeDispatcher;
mImeDispatcher.setHandler(mHandler);
}
/** Returns true if a non-null {@link ImeOnBackInvokedDispatcher} has been set. **/
public boolean hasImeOnBackInvokedDispatcher() {
return mImeDispatcher != null;
}
/**
* Class used to check whether a callback can be registered or not. This is meant to be
* shared with {@link ProxyOnBackInvokedDispatcher} which needs to do the same checks.
*/
public static class Checker {
private WeakReference<Context> mContext;
public Checker(@NonNull Context context) {
mContext = new WeakReference<>(context);
}
/**
* Checks whether the given callback can be registered with the given priority.
* @return true if the callback can be added.
* @throws IllegalArgumentException if the priority is negative.
*/
public boolean checkApplicationCallbackRegistration(int priority,
OnBackInvokedCallback callback) {
final Context hostContext = getContext();
if (hostContext == null) {
Log.w(TAG, "OnBackInvokedCallback is disabled, host context is removed!");
return false;
}
if (!WindowOnBackInvokedDispatcher.isOnBackInvokedCallbackEnabled(hostContext)
&& !(callback instanceof CompatOnBackInvokedCallback)) {
Log.w(TAG,
"OnBackInvokedCallback is not enabled for the application."
+ "\nSet 'android:enableOnBackInvokedCallback=\"true\"' in the"
+ " application manifest.");
return false;
}
if (predictiveBackPrioritySystemNavigationObserver()) {
if (priority < 0 && priority != PRIORITY_SYSTEM_NAVIGATION_OBSERVER) {
throw new IllegalArgumentException("Application registered "
+ "OnBackInvokedCallback cannot have negative priority. Priority: "
+ priority);
}
} else {
if (priority < 0) {
throw new IllegalArgumentException("Application registered "
+ "OnBackInvokedCallback cannot have negative priority. Priority: "
+ priority);
}
}
Objects.requireNonNull(callback);
return true;
}
@Nullable private Context getContext() {
return mContext.get();
}
}
/**
* @hide
*/
public static boolean isOnBackInvokedCallbackEnabled(@Nullable ActivityInfo activityInfo,
@NonNull ApplicationInfo applicationInfo,
@NonNull Supplier<Context> contextSupplier) {
// new back is enabled if the feature flag is enabled AND the app does not explicitly
// request legacy back.
if (!ENABLE_PREDICTIVE_BACK) {
return false;
}
if (ALWAYS_ENFORCE_PREDICTIVE_BACK) {
return true;
}
boolean requestsPredictiveBack;
// Activity
if (activityInfo != null && activityInfo.hasOnBackInvokedCallbackEnabled()) {
requestsPredictiveBack = activityInfo.isOnBackInvokedCallbackEnabled();
if (DEBUG) {
Log.d(TAG, TextUtils.formatSimple(
"Activity: %s isPredictiveBackEnabled=%s",
activityInfo.getComponentName(),
requestsPredictiveBack));
}
return requestsPredictiveBack;
}
// Application
requestsPredictiveBack = applicationInfo.isOnBackInvokedCallbackEnabled();
if (DEBUG) {
Log.d(TAG, TextUtils.formatSimple("App: %s requestsPredictiveBack=%s",
applicationInfo.packageName,
requestsPredictiveBack));
}
if (requestsPredictiveBack) {
return true;
}
if (PREDICTIVE_BACK_FALLBACK_WINDOW_ATTRIBUTE) {
// Compatibility check for legacy window style flag used by Wear OS.
// Note on compatibility behavior:
// 1. windowSwipeToDismiss should be respected for all apps not opted in.
// 2. windowSwipeToDismiss should be true for all apps not opted in, which
// enables the PB animation for them.
// 3. windowSwipeToDismiss=false should be respected for apps not opted in,
// which disables PB & onBackPressed caused by BackAnimController's
// setTrigger(true)
// Use the original context to resolve the styled attribute so that they stay
// true to the window.
final Context context = contextSupplier.get();
boolean windowSwipeToDismiss = true;
if (context != null) {
final TypedArray array = context.obtainStyledAttributes(
new int[]{android.R.attr.windowSwipeToDismiss});
if (array.getIndexCount() > 0) {
windowSwipeToDismiss = array.getBoolean(0, true);
}
array.recycle();
}
if (DEBUG) {
Log.i(TAG, "falling back to windowSwipeToDismiss: " + windowSwipeToDismiss);
}
requestsPredictiveBack = windowSwipeToDismiss;
}
return requestsPredictiveBack;
}
}
|