Android Open Source - cloudwave Track






From Project

Back to project page cloudwave.

License

The source code is released under:

Apache License

If you think the Android project cloudwave 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.luboganev.cloudwave.data;
//from  w  w w. ja v  a2  s. c  o  m
/**
 * This object serves as a model for the the tracks that are shown in the live wallpaper
 */
public class Track {
  /** The id of the track */
  public long id;
  /** The title of the track. It is shown under the sound wave */
  public String title;
  /** The permalink of the track. It is opened if the user double taps on the wallpaper */
  public String permalinkUrl;
  /** The url of the sound wave file on SoundCloud */
  public String waveformUrl;
}




Java Source Code List

com.luboganev.cloudwave.CloudWaveWallpaper.java
com.luboganev.cloudwave.LogUtils.java
com.luboganev.cloudwave.data.LocalStorageManager.java
com.luboganev.cloudwave.data.LocalStorage.java
com.luboganev.cloudwave.data.Track.java
com.luboganev.cloudwave.receivers.AlarmReceiver.java
com.luboganev.cloudwave.receivers.ConnectivityChangeReceiver.java
com.luboganev.cloudwave.service.ChangeWallpaperService.java
com.luboganev.cloudwave.service.CommunicationUtils.java