Как создать несколько подтипов IME (редактор метода ввода) на Android? - PullRequest
0 голосов
/ 16 сентября 2018

Я пытаюсь создать несколько подтипов IME, но Android распознает только один.

method.xml

<?xml version="1.0" encoding="utf-8"?>
<input-method
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:supportsSwitchingToNextInputMethod="true"
    android:settingsActivity="com.example.softkeyboard.Settings">


    <subtype android:name="@string/display_name_english_keyboard_dynamic_ime"
        android:imeSubtypeLocale="en_US"
        android:imeSubtypeMode="keyboard"
        android:imeSubtypeExtraValue="charDataFile=strokemaps_dynamic" />

    <subtype android:name="@string/display_name_english_keyboard_ime"
        android:imeSubtypeLocale="en_US"
        android:imeSubtypeMode="keyboard"
        android:imeSubtypeExtraValue="charDataFile=strokemaps" />

</input-method>

В strings.xml есть значения для каждого из имен.

<resources>
<string name="app_name">KK1</string>
<string name="display_name_english_keyboard_ime">English</string>
<string name="display_name_english_keyboard_dynamic_ime">English Dynamic</string>

Мой метод InputMethodService.onStartInputView включает в себя:

@Override
public void onStartInputView(EditorInfo ei, boolean restarting) {

    super.onStartInputView(ei, restarting);

    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
    List<InputMethodInfo> imil = imm.getEnabledInputMethodList();
    for (InputMethodInfo imi: imil) {
        Log.e("osiv", "input method info: "+imi.toString());
    }

    List<InputMethodSubtype> imsl = imm.getEnabledInputMethodSubtypeList(imil.get(0), true);

    for (InputMethodSubtype ims: imsl) {
        Log.e("osiv", "input method subtype: "+ims.toString());
    }

и перечисленные InputMethodInfos включают мой IME, но список подтипов включает только один подтип. Каждый из подтипов работает, если он единственный в файле.

Устройство Android 8.0 не отображает подтипы в параметре конфигурации «Язык / клавиатура», только сами IME, поэтому подтипы нельзя включать или отключать по отдельности.

Есть ли где-то еще один элемент конфигурации, чтобы сообщить Android о разрешении нескольких подтипов IME?

Есть ли очевидная проблема с приведенным выше кодом?

Вот AndroidManifest, на случай, если это будет полезно.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.k.k.kk1">

<uses-permission android:name="android.permission.VIBRATE" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <service
        android:name=".KKInputMethodService"
        android:permission="android.permission.BIND_INPUT_METHOD"
        android:label="KK"
        android:configChanges="orientation">
        <intent-filter>
            <action android:name="android.view.InputMethod"/>
        </intent-filter>
        <meta-data
            android:name="android.view.im"
            android:resource="@xml/method"/>

    </service>

</application>

1 Ответ

0 голосов
/ 24 сентября 2018

По-видимому, существует один способ изменить подтип IME, а именно использовать встроенный инструмент выбора подтипов, который, по-видимому, доступен только через намерение из приложения или IME.

final Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
intent.putExtra(Settings.EXTRA_INPUT_METHOD_ID, imId);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Intent.EXTRA_TITLE, “Select Enabled Subtypes”);
context.startActivity(intent);

ФЛАГ необходим, если вы хотите запустить Intent из InputMethodService.

Вы можете получить идентификатор метода ввода 'imId' из объекта inputMethodInfo, используя:

String imId = inputMethodInfo.getId(); 

или вы можете получить идентификатор, используя:

String imId = Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);

Суть этого ответа от: https://blog.swiftkey.com/tech-blog-android-input-method-subtypes/

...