Added Ukrainian keyboard layout. As Gboard layout. Close #252
This commit is contained in:
parent
0226f5d2d4
commit
6c4d6a0638
|
@ -188,6 +188,7 @@ fun Context.getKeyboardLanguages(): ArrayList<RadioItem> {
|
||||||
RadioItem(LANGUAGE_SPANISH, getKeyboardLanguageText(LANGUAGE_SPANISH)),
|
RadioItem(LANGUAGE_SPANISH, getKeyboardLanguageText(LANGUAGE_SPANISH)),
|
||||||
RadioItem(LANGUAGE_SWEDISH, getKeyboardLanguageText(LANGUAGE_SWEDISH)),
|
RadioItem(LANGUAGE_SWEDISH, getKeyboardLanguageText(LANGUAGE_SWEDISH)),
|
||||||
RadioItem(LANGUAGE_TURKISH_Q, getKeyboardLanguageText(LANGUAGE_TURKISH_Q)),
|
RadioItem(LANGUAGE_TURKISH_Q, getKeyboardLanguageText(LANGUAGE_TURKISH_Q)),
|
||||||
|
RadioItem(LANGUAGE_UKRAINIAN, getKeyboardLanguageText(LANGUAGE_UKRAINIAN)),
|
||||||
RadioItem(LANGUAGE_VIETNAMESE_TELEX, getKeyboardLanguageText(LANGUAGE_VIETNAMESE_TELEX)),
|
RadioItem(LANGUAGE_VIETNAMESE_TELEX, getKeyboardLanguageText(LANGUAGE_VIETNAMESE_TELEX)),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -212,6 +213,7 @@ fun Context.getKeyboardLanguageText(language: Int): String {
|
||||||
LANGUAGE_SPANISH -> getString(R.string.translation_spanish)
|
LANGUAGE_SPANISH -> getString(R.string.translation_spanish)
|
||||||
LANGUAGE_SWEDISH -> getString(R.string.translation_swedish)
|
LANGUAGE_SWEDISH -> getString(R.string.translation_swedish)
|
||||||
LANGUAGE_TURKISH_Q -> "${getString(R.string.translation_turkish)} (Q)"
|
LANGUAGE_TURKISH_Q -> "${getString(R.string.translation_turkish)} (Q)"
|
||||||
|
LANGUAGE_UKRAINIAN -> getString(R.string.translation_ukrainian)
|
||||||
LANGUAGE_VIETNAMESE_TELEX -> "${getString(R.string.translation_vietnamese)} (Telex)"
|
LANGUAGE_VIETNAMESE_TELEX -> "${getString(R.string.translation_vietnamese)} (Telex)"
|
||||||
else -> "${getString(R.string.translation_english)} (QWERTY)"
|
else -> "${getString(R.string.translation_english)} (QWERTY)"
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,7 @@ const val LANGUAGE_DANISH = 16
|
||||||
const val LANGUAGE_FRENCH_BEPO = 17
|
const val LANGUAGE_FRENCH_BEPO = 17
|
||||||
const val LANGUAGE_VIETNAMESE_TELEX = 18
|
const val LANGUAGE_VIETNAMESE_TELEX = 18
|
||||||
const val LANGUAGE_POLISH = 19
|
const val LANGUAGE_POLISH = 19
|
||||||
|
const val LANGUAGE_UKRAINIAN = 20
|
||||||
|
|
||||||
// keyboard height percentage options
|
// keyboard height percentage options
|
||||||
const val KEYBOARD_HEIGHT_70_PERCENT = 70
|
const val KEYBOARD_HEIGHT_70_PERCENT = 70
|
||||||
|
|
|
@ -413,6 +413,7 @@ class SimpleKeyboardIME : InputMethodService(), OnKeyboardActionListener, Shared
|
||||||
LANGUAGE_SWEDISH -> R.xml.keys_letters_swedish
|
LANGUAGE_SWEDISH -> R.xml.keys_letters_swedish
|
||||||
LANGUAGE_SPANISH -> R.xml.keys_letters_spanish_qwerty
|
LANGUAGE_SPANISH -> R.xml.keys_letters_spanish_qwerty
|
||||||
LANGUAGE_TURKISH_Q -> R.xml.keys_letters_turkish_q
|
LANGUAGE_TURKISH_Q -> R.xml.keys_letters_turkish_q
|
||||||
|
LANGUAGE_UKRAINIAN -> R.xml.keys_letters_ukrainian
|
||||||
else -> R.xml.keys_letters_english_qwerty
|
else -> R.xml.keys_letters_english_qwerty
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,186 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Keyboard xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
|
<Row app:isNumbersRow="true">
|
||||||
|
<Key
|
||||||
|
app:keyEdgeFlags="left"
|
||||||
|
app:keyLabel="1"
|
||||||
|
app:topSmallNumber="1" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="2"
|
||||||
|
app:topSmallNumber="2" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="3"
|
||||||
|
app:topSmallNumber="3" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="4"
|
||||||
|
app:topSmallNumber="4" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="5"
|
||||||
|
app:topSmallNumber="5" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="6"
|
||||||
|
app:topSmallNumber="6" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="7"
|
||||||
|
app:topSmallNumber="7" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="8"
|
||||||
|
app:topSmallNumber="8" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="9"
|
||||||
|
app:topSmallNumber="9" />
|
||||||
|
<Key
|
||||||
|
app:keyEdgeFlags="right"
|
||||||
|
app:keyLabel="0"
|
||||||
|
app:topSmallNumber="0" />
|
||||||
|
</Row>
|
||||||
|
<Row app:keyWidth="8.33%p">
|
||||||
|
<Key
|
||||||
|
app:keyEdgeFlags="left"
|
||||||
|
app:keyLabel="й" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="ц"
|
||||||
|
app:popupCharacters="1"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="1" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="у"
|
||||||
|
app:popupCharacters="2"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="2" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="к"
|
||||||
|
app:popupCharacters="3"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="3" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="е"
|
||||||
|
app:popupCharacters="4"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="4" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="н"
|
||||||
|
app:popupCharacters="5"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="5" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="г"
|
||||||
|
app:popupCharacters="6"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="6" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="ш"
|
||||||
|
app:popupCharacters="7"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="7" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="щ"
|
||||||
|
app:popupCharacters="8"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="8" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="з"
|
||||||
|
app:popupCharacters="9"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="9" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="х"
|
||||||
|
app:popupCharacters="0"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template"
|
||||||
|
app:topSmallNumber="0" />
|
||||||
|
<Key
|
||||||
|
app:keyEdgeFlags="right"
|
||||||
|
app:keyLabel="ї" />
|
||||||
|
</Row>
|
||||||
|
<Row app:keyWidth="8.33%p">
|
||||||
|
<Key
|
||||||
|
app:keyEdgeFlags="left"
|
||||||
|
app:keyLabel="ф" />
|
||||||
|
<Key app:keyLabel="і" />
|
||||||
|
<Key app:keyLabel="в" />
|
||||||
|
<Key app:keyLabel="а" />
|
||||||
|
<Key app:keyLabel="п" />
|
||||||
|
<Key app:keyLabel="р" />
|
||||||
|
<Key app:keyLabel="о" />
|
||||||
|
<Key app:keyLabel="л" />
|
||||||
|
<Key app:keyLabel="д" />
|
||||||
|
<Key app:keyLabel="ж" />
|
||||||
|
<Key app:keyLabel="є" />
|
||||||
|
<Key
|
||||||
|
app:keyEdgeFlags="right"
|
||||||
|
app:keyLabel="'" />
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Key
|
||||||
|
app:code="-1"
|
||||||
|
app:keyEdgeFlags="left"
|
||||||
|
app:keyIcon="@drawable/ic_caps_outline_vector"
|
||||||
|
app:keyWidth="10%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="я"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="ч"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="с"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="м"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="и"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="т"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="ь"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="б"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="ю"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="ґ"
|
||||||
|
app:keyWidth="8%p" />
|
||||||
|
<Key
|
||||||
|
app:code="-5"
|
||||||
|
app:isRepeatable="true"
|
||||||
|
app:keyEdgeFlags="right"
|
||||||
|
app:keyIcon="@drawable/ic_clear_vector"
|
||||||
|
app:keyWidth="10%p" />
|
||||||
|
</Row>
|
||||||
|
<Row>
|
||||||
|
<Key
|
||||||
|
app:code="-2"
|
||||||
|
app:keyEdgeFlags="left"
|
||||||
|
app:keyLabel="123"
|
||||||
|
app:keyWidth="15%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel=","
|
||||||
|
app:keyWidth="10%p" />
|
||||||
|
<Key
|
||||||
|
app:code="-6"
|
||||||
|
app:keyEdgeFlags="left"
|
||||||
|
app:keyIcon="@drawable/ic_emoji_emotions_outline_vector"
|
||||||
|
app:keyWidth="10%p"
|
||||||
|
app:secondaryKeyIcon="@drawable/ic_language_outlined" />
|
||||||
|
<Key
|
||||||
|
app:code="32"
|
||||||
|
app:isRepeatable="true"
|
||||||
|
app:keyWidth="40%p" />
|
||||||
|
<Key
|
||||||
|
app:keyLabel="."
|
||||||
|
app:keyWidth="10%p"
|
||||||
|
app:popupCharacters=",?!;:…"
|
||||||
|
app:popupKeyboard="@xml/keyboard_popup_template" />
|
||||||
|
<Key
|
||||||
|
app:code="-4"
|
||||||
|
app:keyEdgeFlags="right"
|
||||||
|
app:keyIcon="@drawable/ic_enter_vector"
|
||||||
|
app:keyWidth="15%p" />
|
||||||
|
</Row>
|
||||||
|
</Keyboard>
|
Loading…
Reference in New Issue