Searched refs:album (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DClusterAlbumSet.java116 ClusterAlbum album;
118 album = (ClusterAlbum) dataManager.peekMediaObject(childPath);
119 if (album == null) {
120 album = new ClusterAlbum(childPath, dataManager, this);
123 album.setMediaItems(clustering.getCluster(i));
124 album.setName(childName);
125 album.setCoverMediaItem(clustering.getClusterCover(i));
126 mAlbums.add(album);
H A DLocalAlbumSet.java128 MediaSet album = getLocalAlbum(dataManager,
130 albums.add(album);
175 for (MediaSet album : mAlbums) {
176 album.reload();
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DAlbumSetSlidingWindow.java72 public MediaSet album; field in class:AlbumSetSlidingWindow.AlbumSetEntry
244 MediaSet album = mSource.getMediaSet(slotIndex);
248 entry.album = album;
249 entry.setDataVersion = getDataVersion(album);
250 entry.cacheFlag = identifyCacheFlag(album);
251 entry.cacheStatus = identifyCacheStatus(album);
252 entry.setPath = (album == null) ? null : album.getPath();
254 String title = (album
[all...]
H A DAlbumSetSlotRenderer.java136 if (entry.album != null && entry.album.isCameraRoll()) {
/packages/apps/Mms/src/com/android/mms/model/
H A DAudioModel.java80 String album = c.getString(c.getColumnIndexOrThrow("album"));
81 if (!TextUtils.isEmpty(album)) {
82 mExtras.put("album", album);
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DFlipperDreamSettings.java52 R.layout.album,
H A DPhotoTableDreamSettings.java51 R.layout.album,
/packages/apps/Music/src/com/android/music/
H A DMediaPlaybackActivity.java102 mAlbumArtWorker = new Worker("album art worker");
111 mAlbum = (ImageView) findViewById(R.id.album);
269 String album;
275 album = mService.getAlbumName();
285 if (MediaStore.UNKNOWN_STRING.equals(album) &&
315 (album != null) && !MediaStore.UNKNOWN_STRING.equals(album);
322 title = album;
324 query = artist + " " + album;
326 query = album;
[all...]
H A DQueryBrowserActivity.java111 // 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);
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 o
[all...]
H A DArtistAlbumBrowserActivity.java270 intent.putExtra("album", mCurrentAlbumId);
272 String album = c.getString(c.getColumnIndex(MediaStore.Audio.Albums.ALBUM));
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
737 // we just use it to see if there is album art or not
H A DMediaPlaybackService.java774 * "album" - String: the name of the album
792 i.putExtra("album",getAlbumName());
1195 String album = getAlbumName();
1196 if (album == null || album.equals(MediaStore.UNKNOWN_STRING)) {
1197 album = getString(R.string.unknown_album_name);
1201 getString(R.string.notification_artist_album, artist, album)
1280 When playing an album with 10 tracks from the start, and enabling shuffle
H A DTrackBrowserActivity.java124 mAlbumId = icicle.getString("album");
130 mAlbumId = intent.getStringExtra("album");
131 // If we have an album, show everything on the album, not just stuff
182 // don't set the album art until after the view has been layed out
354 outcicle.putString("album", mAlbumId);
449 // For compilation albums show only the album title,
450 // but for regular albums show "artist - album".
452 // album, do a query for the artist + album o
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DAlbumSetPage.java208 private static boolean albumShouldOpenInFilmstrip(MediaSet album) { argument
209 int itemCount = album.getMediaItemCount();
210 ArrayList<MediaItem> list = (itemCount == 1) ? album.getMediaItem(0, 1) : null;
211 // open in film strip only if there's one item in the album and the item exists
408 // the empty album toast, otherwise show it within this
424 // Hide the empty album toast if we are in the root instance of
425 // AlbumSetPage and the album is no longer empty (for instance,
721 Log.w(TAG, "failed to load album set");
H A DAlbumPage.java71 public static final String KEY_EMPTY_ALBUM = "empty-album";
376 // Enable auto-select-all for mtp album
553 inflator.inflate(R.menu.album, menu);
641 // data could be null, if there is no images in the album

Completed in 1460 milliseconds