Reputation: 167
friends, i am making a messenger app in the android studio, I want to add Swift Braille Soft keyboard app APK in my app project.I want that when any person touch to type message just open Swift Braille Soft keyboard except default android keyboard.
Upvotes: 0
Views: 637
Reputation: 2111
You can try looking into integrating a 3rd party library called SwiftBraille. It may be what you are looking for.
And then to give the user a choice of keyboards to pick from, you can use:
InputMethodManager inputManager = (InputMethodManager) getApplicationContext().getSystemService(INPUT_METHOD_SERVICE);
inputManager.showInputMethodPicker();
You can take a look this other answer if you are having trouble with switching keyboards.
Upvotes: 1