gpt4 book ai didi

android - 如何获得我的 InputMethodService

转载 作者:太空狗 更新时间:2023-10-29 14:27:54 26 4
gpt4 key购买 nike

我的应用程序有 2 个部分。一个 InputMethodService 和一个 Activity。我所做的是单击 Activity 中的按钮以查看所有可用的 InputMethods,但我在列表中看不到我的 InputMethod。

但在那之后我可以从设置>>>语言和键盘中看到它

这是相关代码

InputMethodManager inputManager = (InputMethodManager) getSystemService (Context.INPUT_METHOD_SERVICE);
inputManager.showInputMethodPicker();

最佳答案

这可能有帮助:

InputMethodManager imeManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE); 
List<InputMethodInfo> lst = imeManager.getEnabledInputMethodList();
for (InputMethodInfo info : lst) {
System.out.println(info.getId() + " " + info.loadLabel(getPackageManager()).toString());
}

关于android - 如何获得我的 InputMethodService,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10171225/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com