HomeSort by relevance Sort by last modified time
    Searched refs:album (Results 26 - 38 of 38) sorted by null

12

  /packages/apps/Music/src/com/android/music/
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...]
MediaPlaybackService.java 130 MediaStore.Audio.Media.ALBUM,
780 * "album" - String: the name of the album
1201 String album = getAlbumName(); local
    [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...]
  /frameworks/base/media/java/android/media/
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...]
  /external/libmtp/src/
libmtp.c 364 register_filetype("Abstract Album file", LIBMTP_FILETYPE_ALBUM, PTP_OFC_MTP_AbstractAudioAlbum);
549 register_property("Album Name", LIBMTP_PROPERTY_AlbumName, PTP_OPC_AlbumName);
550 register_property("Album Artist", LIBMTP_PROPERTY_AlbumArtist, PTP_OPC_AlbumArtist);
    [all...]
libmtp.h 597 /** Default Album folder */
633 char *album; /**< Album name for track */ member in struct:LIBMTP_track_struct
665 * MTP Album structure
670 uint32_t storage_id; /**< ID of storage holding this album */
671 char *name; /**< Name of album */
672 char *artist; /**< Name of album artist */
674 char *genre; /**< Genre of album */
675 uint32_t *tracks; /**< The tracks in this album */
676 uint32_t no_tracks; /**< The number of tracks in this album */
    [all...]
libmtp.h.in 595 /** Default Album folder */
631 char *album; /**< Album name for track */
663 * MTP Album structure
668 uint32_t storage_id; /**< ID of storage holding this album */
669 char *name; /**< Name of album */
670 char *artist; /**< Name of album artist */
672 char *genre; /**< Genre of album */
673 uint32_t *tracks; /**< The tracks in this album */
674 uint32_t no_tracks; /**< The number of tracks in this album */
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumSetPage.java 207 private static boolean albumShouldOpenInFilmstrip(MediaSet album) {
208 int itemCount = album.getMediaItemCount();
209 ArrayList<MediaItem> list = (itemCount == 1) ? album.getMediaItem(0, 1) : null;
210 // open in film strip only if there's one item in the album and the item exists
404 // the empty album toast, otherwise show it within this
420 // Hide the empty album toast if we are in the root instance of
421 // AlbumSetPage and the album is no longer empty (for instance,
717 Log.w(TAG, "failed to load album set");
AlbumPage.java 73 public static final String KEY_EMPTY_ALBUM = "empty-album";
196 // | Camera |---------->| Fullscreen |--->| Album |--->| AlbumSet |
551 inflator.inflate(R.menu.album, menu);
636 // data could be null, if there is no images in the album
  /external/chromium_org/chrome/browser/resources/file_manager/js/metadata/
mpeg_parser.js 112 'Šalb': { data: parseDataString.bind(null, 'album') },
metadata_cache.js 19 * media: artist, album, title, width, height, imageTransform, etc.
852 * media: { artist, album, title, width, height, imageTransform, etc. }
  /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

Completed in 2305 milliseconds

12