Hello, I want to make simple dictionary program with two languages English and Lithuanian.
The idea is to choose from to what language translating using radio buttons and enter a word in EditText view and eventually after user press Translate button it shows results or says there is no such word to translate. I want to make EditText to be autocomplete but words it should take from my custom xml lets say words.xml And structure might be like this: <?xml version="1.0" encoding="utf-8"?> <resources> <word name="1"> <English name="A1">Sunset</English> <Lithuanian name="L1">SaulÄ—lydis</Lithuanian> </word> </resources> To make it more clear I need that when user choose a word in list or type it program should know to what word user is referring and than show its translation in label. So now I am trying to figure out how to create autocomplete list from my custom xml with structure above? (If it is possible). Open to any suggestion... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to android-beginners-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---