HomeSort by relevance Sort by last modified time
    Searched refs:song (Results 1 - 4 of 4) 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/base-app-helpers/src/android/platform/test/helpers/
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);
70 * Setup expectations: PlayMusic is open with a song playing.
72 * This method will pause the song and block until the song is paused.
77 * Setup expectations: PlayMusic is open with a song paused.
79 * This method will play the song and block until the song is playing.
84 * Setup expectations: PlayMusic is open with a song playing the controls minimized
    [all...]
  /platform_testing/libraries/play-music-app-helper/src/android/platform/test/helpers/
PlayMusicHelperImpl.java 166 public void selectSong(String album, String song) {
180 textStartsWith(song));
184 By.res(UI_PACKAGE, "trackname").textStartsWith(song)), EXPAND_WAIT);
277 throw new UnknownUiException("Did not detect a song playing");
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 270 String song; local
276 song = mService.getTrackName();
287 song != null &&
288 song.startsWith("recording")) {
330 if ((song == null) || MediaStore.UNKNOWN_STRING.equals(song)) {
336 title = song;
338 query = artist + " " + song;
340 query = song;
358 i.putExtra(MediaStore.EXTRA_MEDIA_TITLE, song);
    [all...]

Completed in 1228 milliseconds