Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c5fe7843 authored by Dake Gu's avatar Dake Gu Committed by Android Git Automerger
Browse files

am e1b3883c: am 5a5ae1f2: fix ArrayIndexOutOfBoundException of ExitTransitionCoordinator

* commit 'e1b3883c4a5f08dbbcd467ac737756a11fe95707':
  fix ArrayIndexOutOfBoundException of ExitTransitionCoordinator
parents 0fee1dc8 0d8b3328
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -549,7 +549,7 @@ abstract class ActivityTransitionCoordinator extends ResultReceiver {
        Bundle bundle = new Bundle();
        RectF tempBounds = new RectF();
        Matrix tempMatrix = new Matrix();
        for (int i = 0; i < mSharedElementNames.size(); i++) {
        for (int i = 0; i < mSharedElements.size(); i++) {
            View sharedElement = mSharedElements.get(i);
            String name = mSharedElementNames.get(i);
            captureSharedElementState(sharedElement, name, bundle, tempMatrix, tempBounds);