Back to project page SpotifyTray-Android.
The source code is released under:
MIT License
If you think the Android project SpotifyTray-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.droidprojects.spotifytray; //ww w . j a v a 2s. c om import android.os.Bundle; import android.app.Activity; import android.content.Intent; public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = new Intent(this, PlayerService.class); startService(intent); finish(); } }