Reputation: 1110
I want to change the color of keys and background of keyboard. Is there some way to achieve this.
Upvotes: 0
Views: 766
Reputation: 4345
You can change the color of any key by the entry in xml file.
Just to write
android:keyIcon="@drawable/ "
instead of
android:keyLabel="".
Upvotes: 0
Reputation: 5381
A simple answer: no.
Any virtual keyboards are just some part of an input method "application". That is, if you want to change the color of a specific virtual keyboard, you need to change the drawables or the styles which are used by the keyboard.
The only way to achieve your need is "write one IME by yourself."
Upvotes: 1