0

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.

Niyamat Ullah
  • 2,384
  • 1
  • 16
  • 26
Dami
  • 167
  • 2
  • 3
  • 14
  • There is. two possible ways. 1. Take the code of Swift Braille app and integrate it with your app. 2. You can send user to keyboard selection setting screen so that user can change the keyboard accept that it is already installed on system – Sunny Oct 23 '17 at 15:31

1 Answers1

1

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.

chornge
  • 2,021
  • 3
  • 28
  • 37
  • No i do not want to give a choice i want to direct open this SwiftBraille keyboard. – Dami Oct 23 '17 at 15:55