Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom inputType / key set for Android soft keyboard

I'm looking into changing bits and pieces of Android's input methods, to enter coordinates specifically.

The keys/characters needed are 1234567890.-: When choosing numeric signed and decimal I have the first 12 covered, but can't get the : to be included or any other character that can take it's place (perfect would be to have a ° key).

I've now written in input filter that filters those characters: it works but it ain't pretty. The main issue I have is that I can not get the keyboard to open on numbers side instead of the letters side.

Another option that I'd be very interested in would be to amend the existing phone type keypad to include my desired keys. It would remove a lot of clutter and make the remaining keys larger, thus making input easier.

like image 680
Wouter Avatar asked Mar 29 '11 15:03

Wouter


Video Answer


1 Answers

Do you mean writing your own custom keyboard?
If so you can refer this: How to develop a soft keyboard for Android?

like image 131
Heidar Avatar answered Sep 19 '22 04:09

Heidar