I want to populate a spinner with the filenames of files found on the SD card with specific extensions. I can get it thus far to populate the spinner with the correct files,
File filePath= new File(File Address); File[] fileList = filePath.listFiles(); String name = fileList [0].getName().toString();