tags:

views:

75

answers:

1

Hi, I've been trying to create my own android keyboard following this guide and looking at the latinIME souce code.

While reading the kbd_qwerty.xml file I noticed the different tags used and explained here. I was expecting to see certain tag to reproduce what BetterKeyboard application does. They draw more than one key on each button. Example.

Are they adding images or this is somehow possible from the xml?

Thanks for reading!

+1  A: 

Better Keyboard completely rewrote the onscreen keyboard so they can do what every they want with the layout and key functions. With the default Android keyboard you'll need to stick with one glyph per key. Of course you can always use alt's to get other characters.

CaseyB
CaseyB: It makes sense, but how do you know they rewrote the onscreen keyboard?
Macarse
Because there are a lot of features in the BetterKeyboard that aren't possible with the built in Android version.
CaseyB