Android Open Source - SpotifyTray-Android Main Activity






From Project

Back to project page SpotifyTray-Android.

License

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.

Java Source Code

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();
  }
}




Java Source Code List

com.droidprojects.spotifytray.MainActivity.java
com.droidprojects.spotifytray.PlayerService.java
com.droidprojects.spotifytray.Utils.java
com.droidprojects.spotifytray.controller.MockPlaylist.java
com.droidprojects.spotifytray.controller.MockSong.java