I need the name (String) of all files in res/raw/
I tried:
File f = new File(\"/\"); String[] someFiles = f.list();
It looks like
You can use AssetManager:
As far as I can remember, you will have list with (just try different paths):
final String[] allFilesInPackage = getContext().getResources().getAssets().list("");