Hello Friends i am using Media controler in my code and i am including below code but can any body tell me what should i write inside this methods so i can play next and previous songs in media player .
mediaController.setPrevNextListeners(new View.OnClickListener() {
@Override
public void onClick(View v) {
//next button clicked
myVideoView.setVideoPath(filename);
}
}, new View.OnClickListener() {
@Override
public void onClick(View v) {
//previous button clicked
}
});
You will have an array list like this..
with all the files you want to play..
maintain an index of currently being played filename… and you can move to next and previous filenames using that index..