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

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

am af735ebc: am e1b3883c: am 5a5ae1f2: fix ArrayIndexOutOfBoundException of...

am af735ebc: am e1b3883c: am 5a5ae1f2: fix ArrayIndexOutOfBoundException of ExitTransitionCoordinator

* commit 'af735ebc45a0042f9fc7efb948a254bed00cfdd3':
  fix ArrayIndexOutOfBoundException of ExitTransitionCoordinator
parents c1fe1251 c5fe7843
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);