diff options
| author | Kazoku | 2023-02-10 00:40:48 +0700 |
|---|---|---|
| committer | GitHub | 2023-02-09 18:40:48 +0100 |
| commit | b54f9c5797690bf7ca77228f5a3647e72c20388f (patch) | |
| tree | bbffb833ec9de1af014f0a81243f26868b6724f6 /res/xml | |
| parent | 72249b8a42a7586212b06b2236777e296cfec159 (diff) | |
| download | unexpected-keyboard-b54f9c5797690bf7ca77228f5a3647e72c20388f.tar.gz unexpected-keyboard-b54f9c5797690bf7ca77228f5a3647e72c20388f.zip | |
Vietnamese keyboard (#291)
Added missing accent (horn, hook, dot below)
Added layout
Added accent font svg (by modified existing accent)
Diffstat (limited to 'res/xml')
| -rw-r--r-- | res/xml/method.xml | 1 | ||||
| -rw-r--r-- | res/xml/qwerty_vi.xml | 37 | ||||
| -rw-r--r-- | res/xml/settings.xml | 3 |
3 files changed, 41 insertions, 0 deletions
diff --git a/res/xml/method.xml b/res/xml/method.xml index 3cdfd62..73db770 100644 --- a/res/xml/method.xml +++ b/res/xml/method.xml @@ -25,4 +25,5 @@ <subtype android:label="%s" android:languageTag="cs" android:imeSubtypeLocale="cs_CZ" android:imeSubtypeMode="keyboard" android:isAsciiCapable="true" android:imeSubtypeExtraValue="default_layout=qwertz_cs,extra_keys=a|accent_cedille|accent_circonflexe"/> <subtype android:label="%s" android:languageTag="el" android:imeSubtypeLocale="el" android:imeSubtypeMode="keyboard" android:isAsciiCapable="true" android:imeSubtypeExtraValue="default_layout=qwerty_el,extra_keys=£|€"/> <subtype android:label="%s" android:languageTag="sk" android:imeSubtypeLocale="sk_SK" android:imeSubtypeMode="keyboard" android:isAsciiCapable="true" android:imeSubtypeExtraValue="default_layout=qwertz_sk,extra_keys=é|ě|ŕ|ř|ť|ž|ü|ú|ů|í|ö|ó|ô|á|ä|ś|š|ď|ĺ|ľ|ý|č|ň"/> + <subtype android:label="%s" android:languageTag="vi" android:imeSubtypeLocale="vi_VN" android:imeSubtypeMode="keyboard" android:isAsciiCapable="true" android:imeSubtypeExtraValue="default_layout=qwerty_vi"/> </input-method> diff --git a/res/xml/qwerty_vi.xml b/res/xml/qwerty_vi.xml new file mode 100644 index 0000000..e61f1f7 --- /dev/null +++ b/res/xml/qwerty_vi.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="utf-8"?> +<keyboard> + <row> + <key key0="q" key1="~" key2="1" key3="`" key4="esc"/> + <key key0="w" key1="accent_horn" key2="2" key3="\@"/> + <key key0="e" key1="!" key2="3" key3="\#" key4="ê"/> + <key key0="r" key2="4" key3="$" key1="accent_hook_above"/> + <key key0="t" key2="5" key3="%"/> + <key key0="y" key2="6" key3="^"/> + <key key0="u" key2="7" key3="&"/> + <key key0="i" key2="8" key3="*"/> + <key key0="o" key1="ô" key2="9" key3="(" key4=")"/> + <key key0="p" key2="0" key3="f11_placeholder" key4="f12_placeholder"/> + </row> + <row> + <key shift="0.5" key0="a" key1="tab" key2="ă" key3="â"/> + <key key0="s" key1="accent_aigu"/> + <key key0="d" key1="accent_bar" key2="₫" key3="đ"/> + <key key0="f" key1="accent_grave"/> + <key key0="g" key2="-" key3="_"/> + <key key0="h" key2="=" key3="+"/> + <key key0="j" key1="accent_dot_below" key3="{" key4="}"/> + <key key0="k" key3="[" key4="]"/> + <key key0="l" key2="|" key3="\"/> + </row> + <row> + <key width="1.5" key0="shift" key2="loc capslock"/> + <key key0="z"/> + <key key0="x" key1="accent_tilde"/> + <key key0="c" key2="<" key3="."/> + <key key0="v" key2=">" key3=","/> + <key key0="b" key2="\?" key3="/"/> + <key key0="n" key2=":" key3=";"/> + <key key0="m" key2=""" key3="'"/> + <key width="1.5" key0="backspace" key2="delete"/> + </row> +</keyboard> diff --git a/res/xml/settings.xml b/res/xml/settings.xml index 4eccb02..1fdb5e6 100644 --- a/res/xml/settings.xml +++ b/res/xml/settings.xml @@ -40,6 +40,9 @@ <juloo.keyboard2.ExtraKeyCheckBoxPreference app:index="30"/> <juloo.keyboard2.ExtraKeyCheckBoxPreference app:index="31"/> <juloo.keyboard2.ExtraKeyCheckBoxPreference app:index="32"/> + <juloo.keyboard2.ExtraKeyCheckBoxPreference app:index="33"/> + <juloo.keyboard2.ExtraKeyCheckBoxPreference app:index="34"/> + <juloo.keyboard2.ExtraKeyCheckBoxPreference app:index="35"/> </PreferenceScreen> <ListPreference android:key="numpad_layout" android:title="@string/pref_numpad_layout" android:summary="%s" android:defaultValue="high_first" android:entries="@array/pref_numpad_layout_entries" android:entryValues="@array/pref_numpad_layout_values"/> </PreferenceCategory> |
