HomeSort by relevance Sort by last modified time
    Searched refs:ALBUM (Results 1 - 25 of 35) sorted by null

1 2

  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_AlbumsTest.java 81 // the album item is inserted when inserting audio media
86 String selection = Albums.ALBUM +"=?";
87 String[] selectionArgs = new String[] { Audio1.ALBUM };
96 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Albums.ALBUM)));
123 albumValues.put(Albums.ALBUM, Audio2.ALBUM);
156 // the album items are deleted when deleting the audio media which belongs to the album
175 v.put(Albums.ALBUM, "test" + System.currentTimeMillis())
    [all...]
MediaStore_Audio_Artists_AlbumsTest.java 68 // the album item is inserted when inserting audio media
94 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Albums.ALBUM)));
114 albumValues.put(Albums.ALBUM, Audio2.ALBUM);
132 // the album items are deleted when deleting the audio media which belongs to the album
MediaStore_Audio_MediaTest.java 105 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Media.ALBUM)));
147 assertEquals(Audio2.ALBUM, c.getString(c.getColumnIndex(Media.ALBUM)));
MediaStore_Video_MediaTest.java 81 values.put(Media.ALBUM, "cts");
116 assertEquals("cts", c.getString(c.getColumnIndex(Media.ALBUM)));
142 values.put(Media.ALBUM, "cts1");
169 assertEquals("cts1", c.getString(c.getColumnIndex(Media.ALBUM)));
MediaStore_Audio_ArtistsTest.java 94 artistValues.put(Artists.ARTIST, Audio2.ALBUM);
127 // the artist items are deleted when deleting the audio media which belongs to the album
MediaStore_Audio_Playlists_MembersTest.java 41 Members.ALBUM,
71 Members.ALBUM,
227 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Members.ALBUM)));
271 assertEquals(Audio2.ALBUM, c.getString(c.getColumnIndex(Members.ALBUM)));
MediaStore_Audio_Genres_MembersTest.java 128 assertEquals(Audio1.ALBUM, c.getString(c.getColumnIndex(Members.ALBUM)));
  /cts/tests/src/android/provider/cts/
MediaStoreAudioTestHelper.java 99 public static final String ALBUM = "Dangerous";
129 values.put(Media.ALBUM, ALBUM);
176 public static final String ALBUM =
208 values.put(Media.ALBUM, ALBUM);
  /packages/apps/Music/src/com/android/music/
MediaPickerActivity.java 140 MediaStore.Audio.Media.ALBUM,
150 MediaStore.Audio.Media.ALBUM,
237 mAlbumIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM);
QueryBrowserActivity.java 111 // This is an album, show the songs on it
114 i.putExtra("album", uri.getLastPathSegment());
121 i.setDataAndType(Uri.EMPTY, "vnd.android.cursor.dir/album");
133 String album = intent.getStringExtra(MediaStore.EXTRA_MEDIA_ALBUM); local
139 if (album != null) {
140 mFilterString = album;
288 intent.setDataAndType(Uri.EMPTY, "vnd.android.cursor.dir/album");
291 } else if ("album".equals(selectedType)) {
295 intent.putExtra("album", Long.valueOf(id).toString());
323 BaseColumns._ID, // this will be the artist, album or track I
    [all...]
ArtistAlbumBrowserActivity.java 270 intent.putExtra("album", mCurrentAlbumId);
272 String album = c.getString(c.getColumnIndex(MediaStore.Audio.Albums.ALBUM)); local
273 if (album == null || album.equals(MediaStore.UNKNOWN_STRING)) {
274 // unknown album, so we should include the artist ID to limit the songs to songs only by that artist
335 Log.d("Artist/Album", "no group");
356 Log.d("Artist/Album", "no child");
363 mCurrentAlbumName = c.getString(c.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM));
701 String name = cursor.getString(cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM));
    [all...]
TrackBrowserActivity.java 124 mAlbumId = icicle.getString("album");
130 mAlbumId = intent.getStringExtra("album");
131 // If we have an album, show everything on the album, not just stuff
143 MediaStore.Audio.Media.ALBUM,
152 MediaStore.Audio.Media.ALBUM,
182 // don't set the album art until after the view has been layed out
354 outcicle.putString("album", mAlbumId);
447 int idx = mTrackCursor.getColumnIndexOrThrow(MediaStore.Audio.Media.ALBUM);
449 // For compilation albums show only the album title
629 String album = c.getString(albumidx); local
    [all...]
MusicPicker.java 57 * application (title, author, album, duration), as well as the ability to
84 /** Menu item to sort the music list by album title. */
95 MediaStore.Audio.Media.ALBUM,
305 mAlbumIdx = cursor.getColumnIndex(MediaStore.Audio.Media.ALBUM);
AlbumBrowserActivity.java 281 mCurrentAlbumName = mAlbumCursor.getString(mAlbumCursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM));
302 // play the selected album
372 // Since we hide the 'search' menu item when both album and artist are
409 intent.putExtra("album", Long.valueOf(id).toString());
455 MediaStore.Audio.Albums.ALBUM,
554 mAlbumIdx = cursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM);
611 // we just use it to see if there is album art or not
MediaPlaybackService.java 130 MediaStore.Audio.Media.ALBUM,
780 * "album" - String: the name of the album
1201 String album = getAlbumName(); local
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
MediaMetadataTest.java 37 FILE_PATH,CD_TRACK, ALBUM,
87 Log.v(TAG, "Album : "+ value);
88 assertEquals(TAG, meta_data_file[fileIndex][meta.ALBUM.ordinal()], value);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicRetriever.java 81 int albumColumn = cur.getColumnIndex(MediaStore.Audio.Media.ALBUM);
116 String album; field in class:MusicRetriever.Item
119 public Item(long id, String artist, String title, String album, long duration) {
123 this.album = album;
140 return album;
  /development/apps/Development/src/com/android/development/
MediaScannerActivity.java 167 // Add one more album (with 10 songs) to the database. This will be a compilation album,
168 // with one album artist for the album, and a separate artist for each song.
186 map.put(Audio.Media.ALBUM, albumName);
  /frameworks/base/media/java/android/media/
Metadata.java 100 public static final int ALBUM = 8; // String
MediaScanner.java 616 } else if (name.equalsIgnoreCase("album") || name.startsWith("album;")) {
784 map.put(Video.Media.ALBUM, (mAlbum != null && mAlbum.length() > 0
797 map.put(Audio.Media.ALBUM, (mAlbum != null && mAlbum.length() > 0) ?
817 // use album artist if artist is missing
828 String album = values.getAsString(Audio.Media.ALBUM);
829 if (MediaStore.UNKNOWN_STRING.equals(album)) {
830 album = values.getAsString(MediaStore.MediaColumns.DATA);
832 int lastSlash = album.lastIndexOf('/')
    [all...]
  /frameworks/base/core/java/android/provider/
MediaStore.java 115 * an album, a song, a genre, or any combination of these.
164 * The name of the Intent-extra used to define the album
166 public static final String EXTRA_MEDIA_ALBUM = "android.intent.extra.album";
173 * indicates whether the search should be for things related to the artist, album
313 * if an audio file does not have any meta data, the artist and album columns
    [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 95 private static final String TYPE_ALBUM = "album";
262 // single album
361 // include all songs under album
694 AlbumColumns.ALBUM };
697 final int ALBUM = 1;
706 row.add(Document.COLUMN_DISPLAY_NAME, cursor.getString(AlbumQuery.ALBUM));
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 414 queryAudio(handle, Audio.AudioColumns.ALBUM));
  /external/libvorbis/doc/
05-comment.tex 107 \item[ALBUM]
111 The track number of this piece if part of a specific larger collection or album
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 619 cv.put(MediaStore.Audio.Media.ALBUM,

Completed in 1061 milliseconds

1 2