Reputation: 19434
I'm trying to read the file DictionaryWords in the image below
How do I read in this file?
Upvotes: 2
Views: 1967
Reputation: 992707
You can move the DictionaryWords
file to your assets
folder, which will then cause it to be included in your .apk
. Then you can open it with something like:
context.getAssets().open("DictionaryWords")
Upvotes: 7