I'm having an issue while building a custom keyboard for my android app. I'm able to create rows and keys in the xml file, and I'm already provided of the classes that I need to implement it on my EditText: anyway I don't succeed in assigning certain values to keys.
For example, I can't assign the char ':' to one of the keys: when I excecute the app and I try to press it, it doesn't display anything in the EditText... while it works for, e.g., numbers.
Any solution?
<Row>
....
<Key android:codes="51" android:keyLabel="3" /> //working
<Key android:codes="58" android:keyLabel=":" /> //not working
</Row>