Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to play around with some ideas and develop a soft keyboard for Android to replace the default one.

  • Is there any general information about soft keyboard development for Android out there? Any best practices or guidelines?

  • Can I do with my keyboard application pretty much anything I could do with a normal Android application?

  • Can I do HTTP connections to synchronize keyboard data with a cloud DB and other phones I have?

  • Can I open other windows/screens from a key press, e.g. to display a custom input interface different to a normal QWERTY one. If that doesn't work, can I use a pop-up dialog instead?

share|improve this question
please answer my question stackoverflow.com/questions/15731359/… thanks all – Tsendee Erka Mar 31 at 17:28

4 Answers

up vote 40 down vote accepted

Some tips:

About your questions:

An inputMethod is basically an Android Service, so yes, you can do HTTP and all the stuff you can do in a Service.

You can open Activities and dialogs from the InputMethod. Once again, it's just a Service.

I've been developing an IME, so ask again if you run into an issue.

share|improve this answer
1  
Hey, I just came across this post. I was wondering how to build the LatinIME keyboard. I cloned the repo but when I try to build the java part it seems to complain about the native part, and I can't figure out how to get the ndk to build the right part. Any tips? – Ibrahim Mar 7 '11 at 9:10
Thanks man. i am in rigorous need of this help – amity Sep 6 '11 at 5:21

A good place to start is the sample application provided on the developer docs.

  • Guidelines would be to just make it as usable as possible. Take a look at the others available on the market to see what you should be aiming for
  • Yes, services can do most things, including internet; provided you have asked for those permissions
  • You can open activities and do anything you like n those if you run into a problem with doing some things in the keyboard. For example HTC's keyboard has a button to open the settings activity, and another to open a dialog to change languages.

Take a look at other IME's to see what you should be aiming for. Some (like the official one) are open source.

share|improve this answer

Here is the best tutorial for making custom keyboard.

http://www.fampennings.nl/maarten/android/09keyboard/index.htm

you can synchronize your keyboard data and can store it in db. use the methods of SoftKeyboard class.

share|improve this answer

Create Custom Key Board for Own EditText

Custom Keyboard

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.