Hi!
I have saved a simple text.txt file in the resource directory.
res
- drawable
- text.txt
I would like to do something like this to be able to access the file in my resources folder.
String sTest;
FileInputStream input;
sTest = this.getResources().getString(R.drawable.text);
input = this.openFileInput(sTest);
But it does not work.
How can I do this without using the SDCARD????
I want to save it directly in the project and access it from there.
Thanks


