HomeSort by relevance Sort by last modified time
    Searched refs:categoryValue (Results 1 - 6 of 6) sorted by null

  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
QueueHelper.java 51 String categoryValue = hierarchy[1];
52 LogHelper.d(TAG, "Creating playing queue for ", categoryType, ", ", categoryValue);
57 tracks = musicProvider.getMusicsByGenre(categoryValue);
59 tracks = musicProvider.searchMusic(categoryValue);
MediaIDHelper.java 37 // MediaIDs are of the form <categoryType>/<categoryValue>|<musicUniqueId>, to make it easy
55 public static String createBrowseCategoryMediaID(String categoryType, String categoryValue) {
56 return categoryType + CATEGORY_SEPARATOR + categoryValue;
61 * concatenation of category (eg "by_genre"), categoryValue (eg "Classical") and unique
77 * Extracts category and categoryValue from the mediaID. mediaID is, by this sample's
78 * convention, a concatenation of category (eg "by_genre"), categoryValue (eg "Classical") and
82 * @param mediaID that contains a category and categoryValue.
  /frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/media/utils/
QueueHelper.java 52 String categoryValue = hierarchy[1];
53 Log.d(TAG, "Creating playing queue for " + categoryType + ", " + categoryValue);
58 tracks = musicProvider.getMusicsByGenre(categoryValue);
60 tracks = musicProvider.searchMusic(categoryValue);
MediaIDHelper.java 37 // MediaIDs are of the form <categoryType>/<categoryValue>|<musicUniqueId>, to make it easy
55 public static String createBrowseCategoryMediaID(String categoryType, String categoryValue) {
56 return categoryType + CATEGORY_SEPARATOR + categoryValue;
61 * concatenation of category (eg "by_genre"), categoryValue (eg "Classical") and unique
77 * Extracts category and categoryValue from the mediaID. mediaID is, by this sample's
78 * convention, a concatenation of category (eg "by_genre"), categoryValue (eg "Classical") and
82 * @param mediaID that contains a category and categoryValue.
  /packages/apps/Music/src/com/android/music/utils/
MediaIDHelper.java 40 // MediaIDs are of the form <categoryType>/<categoryValue>|<musicUniqueId>, to make it easy
58 public static String createBrowseCategoryMediaID(String categoryType, String categoryValue) {
59 return categoryType + CATEGORY_SEPARATOR + categoryValue;
64 * concatenation of category (eg "by_genre"), categoryValue (eg "Classical") and unique
81 * Extracts category and categoryValue from the mediaID. mediaID is, by this sample's
82 * convention, a concatenation of category (eg "by_genre"), categoryValue (eg "Classical") and
87 * @param mediaID that contains a category and categoryValue.
QueueHelper.java 52 String categoryValue = hierarchy[1];
53 LogHelper.d(TAG, "Creating playing queue for ", categoryType, ", ", categoryValue);
62 tracks = musicProvider.getMusicsByAlbum(categoryValue);

Completed in 215 milliseconds