HomeSort by relevance Sort by last modified time
    Searched refs:artwork (Results 1 - 4 of 4) sorted by null

  /frameworks/base/media/java/android/media/
IRemoteControlDisplay.aidl 92 void setArtwork(int generationId, in Bitmap artwork);
95 * To combine metadata text and artwork in one binder call
97 void setAllMetadata(int generationId, in Bundle metadata, in Bitmap artwork);
RemoteController.java 361 * Set the maximum artwork image dimensions to be received in the metadata.
365 * @return true if the artwork dimension was successfully set.
373 * Prevents this RemoteController from receiving artwork images.
374 * @return true if receiving artwork images was successfully disabled.
610 public void setArtwork(int genId, Bitmap artwork) {
622 metadata.putParcelable(String.valueOf(MediaMetadataEditor.BITMAP_KEY_ARTWORK), artwork); local
628 public void setAllMetadata(int genId, Bundle metadata, Bitmap artwork) {
634 if ((metadata == null) && (artwork == null)) {
645 if (artwork != null) {
647 artwork); local
    [all...]
RemoteControlClient.java 45 * capable of displaying metadata, artwork and media transport control buttons.
409 * The metadata key for the content artwork / album art.
468 * Sets the album / artwork picture to be displayed on the remote control.
471 * @param bitmap The bitmap for the artwork, or null if there isn't any.
1427 Bitmap artwork = scaleBitmapIfTooBig(mOriginalArtwork, local
1445 Bitmap artwork = scaleBitmapIfTooBig(mOriginalArtwork, w, h); local
1462 Bitmap artwork = scaleBitmapIfTooBig(mOriginalArtwork, local
    [all...]
  /frameworks/base/cmds/media/src/com/android/commands/media/
Media.java 169 public void setArtwork(int generationId, Bitmap artwork) {
170 System.out.println("New artwork: id=" + generationId
171 + " art=" + artwork);
175 public void setAllMetadata(int generationId, Bundle metadata, Bitmap artwork) {
176 System.out.println("New metadata+artwork: id=" + generationId
177 + " data=" + metadata + " art=" + artwork);

Completed in 39 milliseconds