Skip to content

Commit 48c2202

Browse files
committed
Add IME_ACTION_SEARCH for search input
Which is the correct key because the EditText specified `imeOptions="actionSearch"`.
1 parent 1e901dd commit 48c2202

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/src/main/java/de/markusfisch/android/pielauncher/activity/HomeActivity.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ public void afterTextChanged(Editable e) {
188188
case EditorInfo.IME_ACTION_SEND:
189189
case EditorInfo.IME_ACTION_DONE:
190190
case EditorInfo.IME_ACTION_NEXT:
191+
case EditorInfo.IME_ACTION_SEARCH:
191192
case EditorInfo.IME_NULL:
192193
if (searchInput.getText().toString().length() > 0) {
193194
pieView.launchFirstApp();

0 commit comments

Comments
 (0)