mirror of
				https://github.com/SimpleMobileTools/Simple-Keyboard.git
				synced 2025-06-05 21:49:26 +02:00 
			
		
		
		
	fixing Enter key at searches etc
This commit is contained in:
		| @@ -81,7 +81,10 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL | ||||
|                 } | ||||
|                 keyboardView!!.invalidateAllKeys() | ||||
|             } | ||||
|             MyKeyboard.KEYCODE_DONE -> inputConnection.sendKeyEvent(KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_ENTER)) | ||||
|             MyKeyboard.KEYCODE_DONE -> { | ||||
|                 inputConnection.sendKeyEvent(KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_ENTER)) | ||||
|                 inputConnection.sendKeyEvent(KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_ENTER)) | ||||
|             } | ||||
|             MyKeyboard.KEYCODE_MODE_CHANGE -> { | ||||
|                 val keyboardXml = if (keyboardMode == KEYBOARD_LETTERS) { | ||||
|                     keyboardMode = KEYBOARD_SYMBOLS | ||||
|   | ||||
		Reference in New Issue
	
	Block a user