Jak uzyskać dostęp do wszystkich plików mp3 ze wszystkich podfolderów na karcie SD?

Próbuję stworzyć aplikację odtwarzacza mp3, a kiedy uruchomię go z telefonu, odczytuje tylko pliki MP3, które są obecne na samej karcie SD. Nie odczytuje żadnych plików MP3 z podfolderów znajdujących się na karcie. Chcę, aby wyświetlał wszystkie pliki MP3 obecne na karcie SD (w tym podfoldery).

public class SongsManager {
// SDCard Path
final String MEDIA_PATH = new String(Environment.getExternalStorageDirectory().getPath());
private ArrayList<HashMap<String, String>> songsList = new ArrayList<HashMap<String, String>>();

// Constructor
public SongsManager(){

}

/**
 * Function to read all mp3 files from sdcard
 * and store the details in ArrayList
 * */
public ArrayList<HashMap<String, String>> getPlayList(){
    File home = new File(MEDIA_PATH);

    if (home.listFiles(new FileExtensionFilter()).length > 0) {
        for (File file : home.listFiles(new FileExtensionFilter())) {
            HashMap<String, String> song = new HashMap<String, String>();
            song.put("songTitle", file.getName().substring(0, (file.getName().length() - 4)));
            song.put("songPath", file.getPath());

            // Adding each song to SongList
            songsList.add(song);
        }
    }
    // return songs list array
    return songsList;
}


/**
 * Class to filter files which are having .mp3 extension
 * */
class FileExtensionFilter implements FilenameFilter {
    public boolean accept(File dir, String name) {
        return (name.endsWith(".mp3") || name.endsWith(".MP3"));
    }
}  }

questionAnswers(2)

yourAnswerToTheQuestion