summaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/eleven/Config.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/cyanogenmod/eleven/Config.java')
-rw-r--r--src/com/cyanogenmod/eleven/Config.java132
1 files changed, 132 insertions, 0 deletions
diff --git a/src/com/cyanogenmod/eleven/Config.java b/src/com/cyanogenmod/eleven/Config.java
new file mode 100644
index 0000000..708b0f0
--- /dev/null
+++ b/src/com/cyanogenmod/eleven/Config.java
@@ -0,0 +1,132 @@
+/*
+ * Copyright (C) 2012 Andrew Neal
+ * Copyright (C) 2014 The CyanogenMod Project
+ * Licensed under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with the
+ * License. You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
+ * or agreed to in writing, software distributed under the License is
+ * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the specific language
+ * governing permissions and limitations under the License.
+ */
+
+package com.cyanogenmod.eleven;
+
+/**
+ * App-wide constants.
+ *
+ * @author Andrew Neal (andrewdneal@gmail.com)
+ */
+public final class Config {
+
+ /* This class is never initiated. */
+ public Config() {
+ }
+
+ /**
+ * My personal Last.fm API key, please use your own.
+ */
+ public static final String LASTFM_API_KEY = "0bec3f7ec1f914d7c960c12a916c8fb3";
+
+ /**
+ * Used to distinguish album art from artist images
+ */
+ public static final String ALBUM_ART_SUFFIX = "album";
+
+ /**
+ * The ID of an artist, album, genre, or playlist passed to the profile
+ * activity
+ */
+ public static final String ID = "id";
+
+ /**
+ * The name of an artist, album, genre, or playlist passed to the profile
+ * activity
+ */
+ public static final String NAME = "name";
+
+ /**
+ * The name of an artist passed to the profile activity
+ */
+ public static final String ARTIST_NAME = "artist_name";
+
+ /**
+ * The year an album was released passed to the profile activity
+ */
+ public static final String ALBUM_YEAR = "album_year";
+
+ /** number of songs in a album or track list */
+ public static final String SONG_COUNT = "song_count";
+
+ /**
+ * The MIME type passed to a the profile activity
+ */
+ public static final String MIME_TYPE = "mime_type";
+
+ /**
+ * Play from search intent
+ */
+ public static final String PLAY_FROM_SEARCH = "android.media.action.MEDIA_PLAY_FROM_SEARCH";
+
+ /**
+ * The smart playlist type
+ */
+ public static final String SMART_PLAYLIST_TYPE = "smart_playlist_type";
+
+ /**
+ * Number of search results to show at the top level search
+ */
+ public static final int SEARCH_NUM_RESULTS_TO_GET = 3;
+
+ public static enum SmartPlaylistType {
+ LastAdded(-1, R.string.playlist_last_added),
+ RecentlyPlayed(-2, R.string.playlist_recently_played),
+ TopTracks(-3, R.string.playlist_top_tracks);
+
+ public long mId;
+ public int mTitleId;
+
+ SmartPlaylistType(long id, int titleId) {
+ mId = id;
+ mTitleId = titleId;
+ }
+
+ public static SmartPlaylistType getTypeById(long id) {
+ for (SmartPlaylistType type : SmartPlaylistType.values()) {
+ if (type.mId == id) {
+ return type;
+ }
+ }
+
+ return null;
+ }
+ }
+
+ /**
+ * This helps identify where an id has come from. Mainly used to determine when a user
+ * clicks a song where that song came from (artist/album/playlist)
+ */
+ public static enum IdType {
+ NA(0),
+ Artist(1),
+ Album(2),
+ Playlist(3);
+
+ public final int mId;
+
+ IdType(final int id) {
+ mId = id;
+ }
+
+ public static IdType getTypeById(int id) {
+ for (IdType type : values()) {
+ if (type.mId == id) {
+ return type;
+ }
+ }
+
+ throw new IllegalArgumentException("Unrecognized id: " + id);
+ }
+ }
+}