10101101
10101101

Reputation: 305

Add my own custom keyboard to specific edit text

I came to a big problem. I have my own custom keyboard. My goal is to use this keyboard in my other application.

First I tried to set this keyboard as a default device's keyboard programatically. I could do it through adb shell with no problem. But couldn't make it from app using Runtime.exec(). Unfortunately the device is not rooted.

I can use this keyboard when i enable it in settings and then set it as default input method, but I have to do it manually.

So now I would like to set this keyboard to all EditText's in my other application. Is this possible ? Thanks for any help.

Upvotes: 0

Views: 587

Answers (1)

CommonsWare
CommonsWare

Reputation: 1006614

Is this possible ?

No. The user gets to choose the input method editor, not you.

Upvotes: 1

Related Questions