Android Latinime Dictionaries
I'm creating my own input method app based on the Android AOSP LatinIME project. I managed to find some of the dictionary files for auto-correction and predictions (main_en.dict, m
Solution 1:
I'm investigating LatinIME too. It seems that you have to mimic the format of other dictionaries to create your own one, refer to LatinIME/dictionaries. After that, run dicttool_aosp to generate the binary dictionary, then put it into resource/raw folder.
Post a Comment for "Android Latinime Dictionaries"