Bryan Williams
Bryan Williams

Reputation: 693

Keyboard "Next" button color

I am trying to find out how to get the color of the Next button on an Android keyboard. It is being set by the OS because on the Kindle Fire it is orange and on the Nexus 7 it is blue.

Is there a system call to get that color?

I would like to use that color in other parts of my apps so it looks like the OS's.

Kindle Fire keyboard:

enter image description here

Upvotes: 1

Views: 641

Answers (1)

Kevin Coppock
Kevin Coppock

Reputation: 134714

You can't. That's defined by the input method (e.g. the keyboard), not the OS (which is why it's different on Kindle vs Android -- Amazon has their own custom keyboard).

It's something you shouldn't try to handle, unless you're writing your own custom keyboard.

Upvotes: 3

Related Questions