protected override void OnStart () { base.OnStart (); if (playIntent == null) { playIntent = new Intent(this, typeof(MusicService)); musicConn = new MusicConnection (); BindService(playIntent, musicConn, Bind.AutoCreate); StartService(playIntent); } }
protected override void OnStart() { base.OnStart(); if (playIntent == null) { playIntent = new Intent(this, typeof(MusicService)); musicConn = new MusicConnection(); BindService(playIntent, musicConn, Bind.AutoCreate); StartService(playIntent); } }