From 0356865dadea60ca612c631ba3a7151c62954cd1 Mon Sep 17 00:00:00 2001 From: Adrian Roos Date: Mon, 15 Aug 2016 15:02:46 -0700 Subject: [PATCH] Fix bug where RemoteInputView didn't reopen the IME Editable TextViews are implicitly selectable. Setting the selectable property to true however causes a bug where the onTouch logic thinks the view is not editable and thus doesn't show the IME when clicking that view. Change-Id: I9dd6139195bd98b26293e330290650d4e5549a6d Fixes: 30595718 --- packages/SystemUI/res/layout/remote_input.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/SystemUI/res/layout/remote_input.xml b/packages/SystemUI/res/layout/remote_input.xml index 0c8cc9bb5f025..f0c4e595106a6 100644 --- a/packages/SystemUI/res/layout/remote_input.xml +++ b/packages/SystemUI/res/layout/remote_input.xml @@ -42,7 +42,6 @@ android:singleLine="true" android:ellipsize="start" android:inputType="textShortMessage|textAutoCorrect|textCapSentences" - android:textIsSelectable="true" android:imeOptions="actionNone|flagNoExtractUi" />