是否可以知道用户使用的键盘?如何检查用户是否使用Swype键盘?
答案 0 :(得分:12)
您可以使用以下方法检索当前的默认键盘:
String currentKeyboard = Settings.Secure.getString(getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
对于各种键盘,您将获得com.touchtype.swiftkey/com.touchtype.KeyboardService
之类的结果。第一部分是键盘的主程序包名称,第二部分是它使用的键盘服务的名称。只需解析此String以查看它是否与Swype的信息匹配(我现在只能提供SwiftKey的详细信息,因为我没有安装Swype)。
答案 1 :(得分:2)
答案 2 :(得分:0)
以下内容可让您确定是否使用Samsung,Google或Swype键盘。
public boolean usingSamsungKeyboard(Context context){
return usingKeyboard(context, "com.sec.android.inputmethod/.SamsungKeypad");
}
public boolean usingSwypeKeyboard(Context context){
return usingKeyboard(context, "com.nuance.swype.input/.IME");
}
public boolean usingGoogleKeyboard(Context context){
return usingKeyboard(context, "com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME");
}
public boolean usingKeyboard(Context context, String keyboardId)
{
final InputMethodManager richImm =
(InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
boolean isKeyboard = false;
final Field field;
try
{
field = richImm.getClass().getDeclaredField("mCurId");
field.setAccessible(true);
Object value = field.get(richImm);
isKeyboard = value.equals(keyboardId);
}
catch (IllegalAccessException e)
{
}
catch (NoSuchFieldException e)
{
}
return isKeyboard;
}