I posted a day ago similar question, but I simplified my problem here so hoping to get resolved. I think I know when reading a file with 'filename.ext', I use
InputStream inputStream = getResources().openRawResource(R.raw.filename);
But how I can access multiple files? I need a function looks like
InputStream inputStream[] = getResources().openRawResource(R.raw.*.*);
Thanks!