Noncompliant Code
Intent i=new Intent(this,Playing.class); this.startService(i); ...
Compliant Solution
Intent i=new Intent(this,Playing.class); this.startService(i); ... Intent i=new Intent(this,Playing.class); this.stopService(i);