We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09cc074 commit c9f9413Copy full SHA for c9f9413
app/src/main/java/com/gazlaws/codeboard/CodeBoardIME.java
@@ -422,6 +422,11 @@ public void onRelease(int primaryCode) {
422
423
public void onKeyLongPress(int keyCode) {
424
InputConnection ic = getCurrentInputConnection();
425
+ //Popup input method picker when the SYM key is long pressed
426
+ if (keyCode == -1) {
427
+ InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(Context.INPUT_METHOD_SERVICE);
428
+ imeManager.showInputMethodPicker();
429
+ }
430
431
if (keyCode == 32) { // Space button long press
432
if (currentLayoutIndex == 0) {
0 commit comments