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

Commit eff2451a authored by Jeff DeCew's avatar Jeff DeCew Committed by Automerger Merge Worker
Browse files

Merge "Prevent exception when temporarily detaching the RemoteInputView's...

Merge "Prevent exception when temporarily detaching the RemoteInputView's EditText." into sc-dev am: 0b2f0528

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14938832

Change-Id: Ie02c489c6689a031f43aef11e6a78ee6f15277ef
parents 98d8fa49 0b2f0528
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -749,7 +749,10 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene
        super.dispatchStartTemporaryDetach();
        // Detach the EditText temporarily such that it doesn't get onDetachedFromWindow and
        // won't lose IME focus.
        detachViewFromParent(mEditText);
        final int iEditText = indexOfChild(mEditText);
        if (iEditText != -1) {
            detachViewFromParent(iEditText);
        }
    }

    @Override