Vic Vuci
Vic Vuci

Reputation: 7051

How do I change the background color of default keyboard used in an app?

So the app I am making requires a darker keyboard to be used (or else the contrast between content and keyboard is far too high), so I need to change what keyboard appears when I interact with an EditText.

I've taken a look at the Android Soft Keyboard, but I'm having a hard time following it. If someone is able to help me with that, it'd be wonderful, though I am hoping there is an easier way out there already.

Thanks.

Upvotes: 3

Views: 6857

Answers (1)

slayton
slayton

Reputation: 20309

If you want a keyboard with a specific look and feel in your app you need to include it in the app. Your app can say which keyboard variant it wants to appear (qwerty, numpad, etc...) but appart from that it cannot change the keyboard.

There are literally dozens of keyboards to chose from. I suggest that you don't design you app to require a very specific looking keyboard, instead design your app to look good under all circumstances.

Upvotes: 1

Related Questions