mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-11-23 07:43:13 +01:00
7a3312fd01
This replaces the "disable accent keys" checkbox. The default should work for anyone: Accents will be hidden unless the user has the french language installed. The value "show every accents" is useful for versions of android that don't have subtypes.
20 lines
830 B
XML
20 lines
830 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<input-method xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:settingsActivity="juloo.keyboard2.SettingsActivity"
|
|
android:supportsSwitchingToNextInputMethod="true">
|
|
<subtype android:label="@string/subtype_label_qwerty"
|
|
android:languageTag="en"
|
|
android:imeSubtypeLocale="en_US"
|
|
android:imeSubtypeMode="keyboard"
|
|
android:isAsciiCapable="true"
|
|
android:imeSubtypeExtraValue="default_layout=qwerty"
|
|
/>
|
|
<subtype android:label="@string/subtype_label_azerty"
|
|
android:languageTag="fr"
|
|
android:imeSubtypeLocale="fr_FR"
|
|
android:imeSubtypeMode="keyboard"
|
|
android:isAsciiCapable="true"
|
|
android:imeSubtypeExtraValue="default_layout=azerty,accents=grave|aigu|circonflexe|tilde|cedille|trema"
|
|
/>
|
|
</input-method>
|