答案 0 :(得分:1)
您可以尝试集成名为SwiftBraille的第三方库。这可能就是你要找的东西。
然后为用户提供可供选择的键盘选择,您可以使用:
InputMethodManager inputManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
inputManager.showInputMethodPicker();
如果您在切换键盘时遇到问题,可以查看其他answer。