@ Michael,
We cannot comment on each other’s posts because we are too new. Welcome, aboard.
To answer your question, you CAN dynamically query which audio files are available. You just can’t do so by using the /res/raw directory. You must use the /assets directory for this.
First, I would like to clarify that /res/raw and /assets are both legitimate places to package files with an application. They are used for different purposes, however, and each has a different significance. So, what is the significance of each location, and when (or why) should you place files in each location?
Well, let's consider the /res/raw location first. Placing a file in /res/raw makes the file a Resource. With Android, Resource means something very specific; it doesn't just mean "something available to use". Rather, a Resource is something that could potentially have multiple versions that are "swappable" at runtime. The “active” version will depend on the application’s context (environment). For example, several different versions of the same “Resource” might exist for different locales and languages, for different form factors (screen sizes), for different orientations of the device, or even for different visual themes of the application!
Resources are accessed through Resource IDs, which are analogous to pointers; they refer to the different variants indirectly. For example, I might package 3 different versions of an icon with my application, each appropriate for a different screen density. In my source code, though, I don’t refer to each version individually; I simply have one resource ID - something like R.drawable.icon - that refers to "the icon". When the device is running on a high-density screen, R.drawable.icon “points” to the hi-density version of the icon; and on a low-density device, R.drawable.icon “points” to the low-density version.
Now, the mechanisms used to actually resolve the Resource name is beyond the scope of this post. But here is the upshot: each variant has a different path, but the Resource ID is the same for all variants! Consequently, we must refer to resources via ID only. We can’t refer to resources by path, and we can’t even list the paths out – that would defeat the purpose of Resources to begin with. And we shouldn’t need to. We should always know which resources we need, we just know which variant we'll get, and we don't care (at least, we shouldn’t).
This is why you are haveing such trouble querying the resources in /res/raw, or even getting to the directory itself. Those functions are contrary to the concept of Resources. By definition, you always know what Resource you want ahead of time - and the Resource ID that goes with it.
So, what if you don’t know what you want, and therefore want figure out what’s available? Well, that’s the purpose of the /assets location. Note
that /assets is not part of the resource hierarchy. And therein lies the distinction between the /res/raw and /assets: things in /assets
are not resources.
Since things placed in /assets are not resources, they do not have Resource IDs. So you must refer to them by their path. In fact, since you
don’t know where the /assets folder itself is located, you must refer to them by their relative path. Enter AssetManager. AssetManager (a) knows how to find the your application’s /assets folder, (b) how to list files and folders under the /assets folder, and (c) how to open files and folders under the /assets folder. To see how this is done, please review the docs for the AssetManager class, and post again if you need further guidance.
So, in summary: if you have a file that’s a Resource, then put it in /res/raw, and access it via it’s resource ID. If the file is not a resource, then put it somewhere in the /assets folder, and access it via its path.
For more information on resources, see the Application Resources page in the Android Developers Guide
Does this make things clearer?