Prachur
Prachur

Reputation: 1110

Is there some way to change the backround of keyboard and color of keys?

I want to change the color of keys and background of keyboard. Is there some way to achieve this.

Upvotes: 0

Views: 766

Answers (2)

Android Boy
Android Boy

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

shihpeng
shihpeng

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

Related Questions