var url:String="https://dl.prokerala.com/downloads/ringtones/files/dl/mp3/turkish-ringtone-melody-black-ringtone-br-mp3-160k-54995.mp3" var mediaPlayer=MediaPlayer()
fun playsong(view: View){ mediaPlayer!!.setAudioStreamType(AudioManager.STREAM_MUSIC) if(!mediaPlayer!!.isPlaying){
Toast.makeText(this,"The Song is now Playing",Toast.LENGTH_SHORT).show() try{ mediaPlayer!!.setDataSource(url) mediaPlayer.prepare() mediaPlayer.start() } catch (e:IOException){ e.printStackTrace() } } else{ Toast.makeText(this,"The Song is now Stopped",Toast.LENGTH_SHORT).show() try{ mediaPlayer.pause() mediaPlayer.stop() mediaPlayer.reset() } catch (e:IOException){ e.printStackTrace() }
} } }
Post a Comment
0
Comments
Download the App
Codingkaro App
Download Codingkaro App and learn DSA, prepare for Interview and get the best Contest Reminder App for Free.
0 Comments
If you have any doubts/suggestion/any query or want to improve this article, you can comment down below and let me know. Will reply to you soon.