Reputation: 753
So I would like to know how to create a dictionary, like the english/spanish ones that are included already on the phone. What I want to do is put the english and spanish one together so that users do not have to switch between them, and also add words that are products of combining english and spanish together to make a word. How could I do this? What do I need? And I want to create the dictionary used by the keyboard, not a keyboard.
Thanks in advance!
Upvotes: 3
Views: 3453
Reputation: 5542
Take a look at this: http://developer.android.com/resources/articles/creating-input-method.html
For an example with support for multiple input types and text prediction you can also have a look at the LatinIME source code. The Android SDK also includes a SoftKeyboard sample too.
Upvotes: 4