gpt4 book ai didi

android - 如何检查我的自定义键盘是否已在设置中启用

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:34:08 26 4
gpt4 key购买 nike

我正在制作自定义软键盘。无论如何要检查它是否已在设置中启用?

最佳答案

检查下面的代码:-

    String packageLocal = getPackageName();
boolean isInputDeviceEnabled = false;
InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
List<InputMethodInfo> list = inputMethodManager.getEnabledInputMethodList();

// check if our keyboard is enabled as input method
for (InputMethodInfo inputMethod : list) {
String packageName = inputMethod.getPackageName();
if (packageName.equals(packageLocal)) {
Toast.makeText(getApplicationContext(),"Your Keyboard Enable",Toast.LENGTH_SHORT).show();
}
}

关于android - 如何检查我的自定义键盘是否已在设置中启用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36828534/

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