Попробуйте вот так
Field[] fields=R.raw.class.getFields();
int[] resourceID=new int[fields.length];
String[] names=new String[fields.length];
for(int count=0; count < fields.length; count++){
names[count]= fields[count].getName();<--- this is the list of names
resourceID[count]=fields[count].getInt(fields[count]);<---- refer to those files using their ids in this array...(for example ..to play the audio.. u cannot get the file from name.. use this ids)
}
теперь передайте массив адаптеру вашего списка просмотра вот так
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,R.layout.text,R.id.textView1, Arrays.asList(names););