I am using a media player instance to play a music file.I want to play the song for certain time then stop playing.I\'m using a thread with counter decrementing but some how
this is something you can do.. Play with media player normally and at the same Time initialise a handler and call its postDelayed method with interval you want.. and inside it stop the MEdia player.. Something like this..
new Handler().postDelayed(new Runnable(){
//stop playing
}, 400);