mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-12-28 17:08:48 +01:00
ca07bff133
This removes the "layout" setting. Every layouts that the user could use will appear in the global settings.
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_azerty"
|
|
android:languageTag="fr"
|
|
android:imeSubtypeLocale="fr_FR"
|
|
android:imeSubtypeMode="keyboard"
|
|
android:isAsciiCapable="true"
|
|
/>
|
|
<subtype android:label="@string/subtype_label_qwerty"
|
|
android:languageTag="en"
|
|
android:imeSubtypeLocale="en_US"
|
|
android:imeSubtypeMode="keyboard"
|
|
android:isAsciiCapable="true"
|
|
/>
|
|
</input-method>
|