如何在Android上创建多个IME(输入法编辑器)子类型?

时间:2018-09-15 22:23:17

标签: android keyboard android-softkeyboard android-8.0-oreo ime

我正在尝试创建多个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>

2 个答案:

答案 0 :(得分:0)

似乎有一种更改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);

如果希望从InputMethodService内部启动Intent,则FLAG是必需的。

您可以使用以下方法从inputMethodInfo对象获取输入法ID“ imId”:

String imId = inputMethodInfo.getId(); 

或者您可以使用以下方式获取ID:

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

此答案的核心来自: https://blog.swiftkey.com/tech-blog-android-input-method-subtypes/

答案 1 :(得分:0)

您还可以通过检索以下设置“selected_input_method_subtype”来获取系统编辑器(当前设置的编辑器或当前设置为默认编辑器,不确定)的输入法子类型ID。 例如,1891618174 是 Gboard 的子类型 ID。