forked from extern/Unexpected-Keyboard
e57c7a7f3a
Now that it's necessary to change the device's settings to use a different layout, qwerty is a better international default than azerty.
18 lines
661 B
XML
18 lines
661 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"
|
|
/>
|
|
<subtype android:label="@string/subtype_label_azerty"
|
|
android:languageTag="fr"
|
|
android:imeSubtypeLocale="fr_FR"
|
|
android:imeSubtypeMode="keyboard"
|
|
android:isAsciiCapable="true"
|
|
/>
|
|
</input-method>
|