renaming keys_letters to keys_letters_english

This commit is contained in:
tibbi 2022-02-02 16:00:01 +01:00
parent 91e8e60554
commit 44ac4ad7f9
3 changed files with 5 additions and 5 deletions

View File

@ -64,7 +64,7 @@ android {
} }
dependencies { dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:fe2610738c' implementation 'com.github.SimpleMobileTools:Simple-Commons:49c2c3da51'
kapt 'androidx.room:room-compiler:2.3.0' kapt 'androidx.room:room-compiler:2.3.0'
implementation 'androidx.room:room-runtime:2.3.0' implementation 'androidx.room:room-runtime:2.3.0'

View File

@ -33,7 +33,7 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL
override fun onInitializeInterface() { override fun onInitializeInterface() {
super.onInitializeInterface() super.onInitializeInterface()
keyboard = MyKeyboard(this, R.xml.keys_letters, enterKeyType) keyboard = MyKeyboard(this, R.xml.keys_letters_english, enterKeyType)
} }
override fun onCreateInputView(): View { override fun onCreateInputView(): View {
@ -63,7 +63,7 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL
} }
else -> { else -> {
keyboardMode = KEYBOARD_LETTERS keyboardMode = KEYBOARD_LETTERS
R.xml.keys_letters R.xml.keys_letters_english
} }
} }
@ -137,7 +137,7 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL
R.xml.keys_symbols R.xml.keys_symbols
} else { } else {
keyboardMode = KEYBOARD_LETTERS keyboardMode = KEYBOARD_LETTERS
R.xml.keys_letters R.xml.keys_letters_english
} }
keyboard = MyKeyboard(this, keyboardXml, enterKeyType) keyboard = MyKeyboard(this, keyboardXml, enterKeyType)
keyboardView!!.setKeyboard(keyboard!!) keyboardView!!.setKeyboard(keyboard!!)
@ -175,7 +175,7 @@ class SimpleKeyboardIME : InputMethodService(), MyKeyboardView.OnKeyboardActionL
override fun onActionUp() { override fun onActionUp() {
if (switchToLetters) { if (switchToLetters) {
keyboardMode = KEYBOARD_LETTERS keyboardMode = KEYBOARD_LETTERS
keyboard = MyKeyboard(this, R.xml.keys_letters, enterKeyType) keyboard = MyKeyboard(this, R.xml.keys_letters_english, enterKeyType)
val editorInfo = currentInputEditorInfo val editorInfo = currentInputEditorInfo
if (editorInfo != null && editorInfo.inputType != InputType.TYPE_NULL && keyboard?.mShiftState != SHIFT_ON_PERMANENT) { if (editorInfo != null && editorInfo.inputType != InputType.TYPE_NULL && keyboard?.mShiftState != SHIFT_ON_PERMANENT) {