Home | History | Annotate | Download | only in browser

Lines Matching defs:MUSIC

47     private static final String MUSIC_URL = "http://storage.googleapis.com/automotive-media/music.json";
49 private static String MUSIC = "music";
60 // Cache for music track data
64 * Get the cached list of music tracks
77 * Get the list of music tracks from a server and return the list of
92 JSONArray videos = jsonObj.getJSONArray(MUSIC);
96 JSONObject music = videos.getJSONObject(j);
97 String title = music.getString(TITLE);
98 String album = music.getString(ALBUM);
99 String artist = music.getString(ARTIST);
100 String genre = music.getString(GENRE);
101 String source = music.getString(SOURCE);
106 String image = music.getString(IMAGE);
110 int trackNumber = music.getInt(TRACK_NUMBER);
111 int totalTrackCount = music.getInt(TOTAL_TRACK_COUNT);
112 int duration = music.getInt(DURATION) * 1000; // ms