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

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -