如何将键盘语言添加到 Android Things 1.0.15

How to add keyboard languages to Android Things 1.0.15

我需要在 Android Things 版本 1.0.15 中向 AOSP 键盘添加语言。

当我尝试修改语言时,长按空格键旁边的按钮 (","),应用程序崩溃:

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.INPUT_METHOD_SUBTYPE_SETTINGS flg=0x14200000 (has extras) }

我尝试安装其他键盘,例如 gboard 或 swiftkey,但没有成功。我无法启动这些应用程序。

您知道其他解决方法吗?

我解决了安装 Gboard 然后 select 使用以下代码以编程方式安装键盘的问题:

    InputMethodManager inputMethodManager = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
    inputMethodManager.showInputMethodPicker();