I want to add Czech dictionary to LatinIME (it is only missing part, UI and keyboard are already here). I found source of LatinIME in source of android itself. There is a sample.xml file which show correct structure for creating dictionaries, but there is a point I got stuck. What do I have to do next?
A:
I have starting reading about this about a week ago. I think you should read code from this link. He did something similiar but in Greek.
Hope it's useful.
Macarse
2009-12-20 13:57:58
Good link, thanks.I'll try to figure out
vorcigernix
2009-12-20 18:09:27
looks like it is only keyboard, can't find dictionary
vorcigernix
2009-12-20 18:28:28
check http://code.google.com/p/android-greek-ime/source/browse/trunk/src/net/bitquill/inputmethod/greek/BinaryDictionary.java he loads a dict in the static block using System.loadLibrary("greekim");
Macarse
2009-12-21 11:51:32
huh..feeling like real stupid, but can you explain more? In which file is dictionary specified? I didn't found any dict/xml file. Does it mean it is typed in some java file?
vorcigernix
2009-12-21 17:57:36
The dictionary is here: http://code.google.com/p/android-greek-ime/source/browse/trunk/#trunk/jni
Macarse
2009-12-21 19:05:23
ok, thanks for help man
vorcigernix
2009-12-22 08:40:14