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

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

am 5a5ae1f2: fix ArrayIndexOutOfBoundException of ExitTransitionCoordinator

* commit '5a5ae1f202fa87ae4f32e1fc9021988efb18be7b':
  fix ArrayIndexOutOfBoundException of ExitTransitionCoordinator
parents bc537dbc f03c1390
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);