Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For various reasons, i'm trying to write my own input keyboard. So far all is going well except that of creating the suggestions.

I've found the latinIME algorithm, which is all good.

However i'm having major difficulty working out how to load the dictionary in the first place.

I've had a good look round the net, and found various suggestions, but no definitive answers, and i cant seem to get any of them to work.

If anyone has any suggestions on how best to do it, or even better some sample code, that would be brilliant.

Many Thanks

James

share|improve this question

1 Answer

There is a BinaryDictionary inside the LatinIME src code here. It loads the dictionary using:

static {
    try {
        System.loadLibrary("jni_latinime");
    } catch (UnsatisfiedLinkError ule) {
        Log.e("BinaryDictionary", "Could not load native library jni_latinime");
    }
}

I don't know if you can access it, but try it.

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.