Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extend Android virtual keyboard

Tags:

java

android

i'm thinking in something a la Appstore's Textsastic, this is, a full row of needed keys (parenthesis, slash, etc) right above the virtual keyboard, like it was an extention of it.

How can i accomplish something like that in Android? Is there at least a way to have a listener when the virtual keyboard shows?

like image 406
ferostar Avatar asked Jan 07 '11 17:01

ferostar


1 Answers

See this article on how to create an input method. You can't extend an existing keyboard without the code. You could probably hack something together that would work in a single app, but not across all apps.

like image 113
Cheryl Simon Avatar answered Oct 16 '22 05:10

Cheryl Simon