Hey guys, I have just recently been learning how to develop applications for the Android based phones. Right now I am just trying to create a simple program that uses Autocomplete, but the only problem is I only know how to define the words I would like to use with this bit:
static final String[] Months = new String[]{
"January","February","March","April","May","June","July","August",
"September","October","November","December"
My library of words is well over 100,000 words, so I get an error when trying to run the program in the emulator. I was wondering if there was some way that I could just have a txt file with my list of words that I the program could reference to when it needs to use the autocorrect feature. If there is a way, I would appreciate any help. Thanks.
static final String[] Months = new String[]{
"January","February","March","April","May","June","July","August",
"September","October","November","December"
My library of words is well over 100,000 words, so I get an error when trying to run the program in the emulator. I was wondering if there was some way that I could just have a txt file with my list of words that I the program could reference to when it needs to use the autocorrect feature. If there is a way, I would appreciate any help. Thanks.