How to implement the Next and Previous functions in a MP3 Player ?
| Fri, 2008-01-18 10:02 | |||||
|
Dear all, I am using the following IDE : As I am a new developper in Symbian and C++, I am trying to create a MP3 Player. At the moment, I realized a MP3 Player with the following basic functions : Play, Pause and Stop. I was also able to manage a dynamic menu to display only Play or Pause depending of the context. To complete my MP3 Player, I would like to implement the Next and Previous basic functions, but I do not know how to do ? Should I use the RFs Class to access to the list all the MP3s stored in the Music directory ? I need your help. It is very important. Regards, Olivier See my attached project:
|
|||||






Forum posts: 49
You can use GetDir() method of RFs to list files with certain mask in selected directory and then move forward or backward through that list.
Forum posts: 2
How can I use the GetDir method in my code ? How can I interface the RFs class with my project?
Should I create a specific container to manage the list of the mp3 files ?