OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mediaID
(Results
1 - 3
of
3
) sorted by null
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
MediaIDHelper.java
60
* Extracts unique musicID from the
mediaID
.
mediaID
is, by this sample's convention, a
65
* @param
mediaID
that contains the musicID
68
public static String extractMusicIDFromMediaID(String
mediaID
) {
69
int pos =
mediaID
.indexOf(LEAF_SEPARATOR);
71
return
mediaID
.substring(pos+1);
77
* Extracts category and categoryValue from the
mediaID
.
mediaID
is, by this sample's
79
*
mediaID
. This is necessary so we know where the user selected the music from, when the music
82
* @param
mediaID
that contains a category and categoryValue
[
all
...]
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/utils/
MediaIDHelper.java
60
* Extracts unique musicID from the
mediaID
.
mediaID
is, by this sample's convention, a
65
* @param
mediaID
that contains the musicID
68
public static String extractMusicIDFromMediaID(String
mediaID
) {
69
int pos =
mediaID
.indexOf(LEAF_SEPARATOR);
71
return
mediaID
.substring(pos+1);
77
* Extracts category and categoryValue from the
mediaID
.
mediaID
is, by this sample's
79
*
mediaID
. This is necessary so we know where the user selected the music from, when the music
82
* @param
mediaID
that contains a category and categoryValue
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/
BrowsedMediaPlayer.java
66
/* The
mediaId
to be used for subscribing for children using the MediaBrowser */
77
/* store mapping between uid(Avrcp) and
mediaId
(Media Player). */
170
@NonNull AvrcpCmd.ItemAttrCmd attrReq, @NonNull String
mediaId
) {
172
mMediaId =
mediaId
;
423
String
mediaID
;
427
mediaID
= byteToString(itemAttr.mUid);
428
if (
mediaID
== null) {
448
mMediaBrowser.subscribe(mPathStack.peek(), new ItemAttribSubscriber(itemAttr,
mediaID
));
746
/* convert uid to
mediaId
*/
749
String
mediaId
= mHmap.get(uid)
[
all
...]
Completed in 146 milliseconds