2

I am newbie to android application development. I am currently developing a virtual keyboard with unicode characters. As the number of characters are too many to be displayed on the keyboard, some of them are hidden and only showup when the user preses a similar key. For example, in my cellphone, when I press A, the characters "A", "B", "C" will be displayed as popup keys to let me choose one of them. I just want to implement virtual keyboard similar to my cellphone's keyboard. I know how implement virtual keyboard using the KeyboardView and Keyboard classes, and keyboard xml resource.

Can anyone give me a hint on how to display popup keys?

Suragch
  • 484,302
  • 314
  • 1,365
  • 1,393
birnihigo
  • 41
  • 7

1 Answers1

0

There are many sample you can use it to help you, Look at this and pick one to use it.

githup project

Good Blog Documentation

tutorial Blog

Android Documentation

Custom Keyboard

Omarj
  • 1,151
  • 2
  • 16
  • 43
  • 1
    Thanx Omarj, specially the third one "tutorial Blog" was helpful for me as get full control over the buttons pressed. I used a spinner to display the remaining characters of my keyboard. The spinner will popup when the user presses a given key. – birnihigo Nov 21 '12 at 14:24