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

Commit 6005ab5b authored by Amith Yamasani's avatar Amith Yamasani Committed by Android (Google) Code Review
Browse files

Merge "Logging to track down an elusive bug with Messaging app losing IME focus in landscape."

parents 29855801 a8b00c88
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2025,7 +2025,10 @@ public class InputMethodService extends AbstractInputMethodService {
            InputConnection ic = getCurrentInputConnection();
            mExtractedText = ic == null? null
                    : ic.getExtractedText(req, InputConnection.GET_EXTRACTED_TEXT_MONITOR);
            
            if (mExtractedText == null || ic == null) {
                Log.e(TAG, "Unexpected null in startExtractingText : mExtractedText = "
                        + mExtractedText + ", input connection = " + ic);
            }
            final EditorInfo ei = getCurrentInputEditorInfo();
            
            try {