countdowntimer - How to set countdown timer for playing song by using streaming in android -
i trying set count down timer streaming song url.countdown timer working, when data not buffered because of slow internet speed countdown timer not stopped. if have idea please me. thanks.
you can total duration , current duration media player this
long totalduration = mediaplayer.getduration()/1000; // converted seconds long currentduration = mediaplayer.getcurrentposition()/1000;
and count down timer can use this
long coundown = currentduration - totalduration ;
hope helped you.
Comments
Post a Comment