OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:song
(Results
1 - 5
of
5
) sorted by null
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
MusicConsumptionExampleFragment.java
26
import android.support.v17.leanback.supportleanbackshowcase.models.
Song
;
49
private List<
Song
> mSongList;
74
// For each
song
add a playlist and favorite actions.
75
for(
Song
song
: mSongList) {
97
song
.setMediaRowActions(mediaRowActions);
100
Song
song
= mSongList.get(mCurrentSongIndex);
local
102
metaData.setArtist(
song
.getDescription());
103
metaData.setTitle(
song
.getTitle())
140
Song
song
= (Song) item;
local
299
Song
song
= mSongList.get(mCurrentSongIndex);
local
[
all
...]
/platform_testing/libraries/app-helpers/common/src/android/platform/test/helpers/common/
AbstractPlayMusicHelper.java
64
* This method will navigate to the Albums tab, select the album, and then select the
song
. The
65
* method will block until the
song
is playing.
67
public abstract void selectSong(String album, String
song
);
73
* album. The method will block until the
song
is playing.
82
* Setup expectations: PlayMusic is open with a
song
playing.
84
* This method will pause the
song
and block until the
song
is paused.
89
* Setup expectations: PlayMusic is open with a
song
paused.
91
* This method will play the
song
and block until the
song
is playing
[
all
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/media/
BluetoothMediaPlayback.java
309
for (String
song
: mediaFileNames) {
310
String songPath = musicPath + "/" +
song
;
325
* @param
song
- the resource path of the file
328
private MediaMetadata retrieveMetaData(String
song
) {
333
Uri.parse(
song
));
349
newMetaData.putString(CUSTOM_URL,
song
);
355
* Returns the MediaMetadata of the
song
that corresponds to the index in the Queue.
373
String
song
= mediaFilesPath.get(queueIndex);
local
374
MediaMetadata track = (MediaMetadata) musicResources.get(
song
);
/packages/apps/Car/LocalMediaPlayer/src/com/android/car/media/localmediaplayer/
Player.java
38
import com.android.car.media.localmediaplayer.nano.Proto.
Song
;
200
playlist.songs = new
Song
[mQueue.size()];
204
Song
song
= new
Song
();
local
205
song
.queueId = item.getQueueId();
207
song
.mediaId = description.getMediaId();
208
song
.title = description.getTitle().toString();
209
song
.subtitle = description.getSubtitle().toString();
210
song
.path = description.getExtras().getString(DataModel.PATH_KEY)
[
all
...]
/packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java
263
String
song
;
local
269
song
= mService.getTrackName();
279
&&
song
!= null &&
song
.startsWith("recording")) {
319
if ((
song
== null) || MediaStore.UNKNOWN_STRING.equals(
song
)) {
325
title =
song
;
327
query = artist + " " +
song
;
329
query =
song
;
347
i.putExtra(MediaStore.EXTRA_MEDIA_TITLE,
song
);
[
all
...]
Completed in 169 milliseconds