OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:categoryValue
(Results
1 - 2
of
2
) 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
.
Completed in 51 milliseconds