diff --git a/api/current.txt b/api/current.txt index 49c09b20445d8..9de53d2dca7f5 100644 --- a/api/current.txt +++ b/api/current.txt @@ -11565,10 +11565,19 @@ package android.media { method public android.graphics.drawable.Drawable getIconDrawable(); method public java.lang.CharSequence getName(); method public java.lang.CharSequence getName(android.content.Context); + method public int getPlaybackStream(); + method public int getPlaybackType(); method public java.lang.CharSequence getStatus(); method public int getSupportedTypes(); method public java.lang.Object getTag(); + method public int getVolume(); + method public int getVolumeHandling(); + method public int getVolumeMax(); method public void setTag(java.lang.Object); + field public static final int PLAYBACK_TYPE_LOCAL = 0; // 0x0 + field public static final int PLAYBACK_TYPE_REMOTE = 1; // 0x1 + field public static final int PLAYBACK_VOLUME_FIXED = 0; // 0x0 + field public static final int PLAYBACK_VOLUME_VARIABLE = 1; // 0x1 } public static class MediaRouter.SimpleCallback extends android.media.MediaRouter.Callback { @@ -11588,8 +11597,20 @@ package android.media { method public void setIconResource(int); method public void setName(java.lang.CharSequence); method public void setName(int); + method public void setPlaybackStream(int); + method public void setPlaybackType(int); method public void setRemoteControlClient(android.media.RemoteControlClient); method public void setStatus(java.lang.CharSequence); + method public void setVolume(int); + method public void setVolumeCallback(android.media.MediaRouter.VolumeCallback); + method public void setVolumeHandling(int); + method public void setVolumeMax(int); + } + + public static abstract class MediaRouter.VolumeCallback { + ctor public MediaRouter.VolumeCallback(); + method public abstract void onVolumeSetRequest(android.media.MediaRouter.RouteInfo, int); + method public abstract void onVolumeUpdateRequest(android.media.MediaRouter.RouteInfo, int); } public class MediaScannerConnection implements android.content.ServiceConnection { diff --git a/media/java/android/media/MediaRouter.java b/media/java/android/media/MediaRouter.java index a309c3fb6fea2..b6187dabe1ae5 100644 --- a/media/java/android/media/MediaRouter.java +++ b/media/java/android/media/MediaRouter.java @@ -600,21 +600,18 @@ public class MediaRouter { private Object mTag; /** - * @hide (to be un-hidden) * The default playback type, "local", indicating the presentation of the media is happening * on the same device (e.g. a phone, a tablet) as where it is controlled from. * @see #setPlaybackType(int) */ public final static int PLAYBACK_TYPE_LOCAL = 0; /** - * @hide (to be un-hidden) * A playback type indicating the presentation of the media is happening on * a different device (i.e. the remote device) than where it is controlled from. * @see #setPlaybackType(int) */ public final static int PLAYBACK_TYPE_REMOTE = 1; /** - * @hide (to be un-hidden) * Playback information indicating the playback volume is fixed, i.e. it cannot be * controlled from this object. An example of fixed playback volume is a remote player, * playing over HDMI where the user prefers to control the volume on the HDMI sink, rather @@ -623,7 +620,6 @@ public class MediaRouter { */ public final static int PLAYBACK_VOLUME_FIXED = 0; /** - * @hide (to be un-hidden) * Playback information indicating the playback volume is variable and can be controlled * from this object. */ @@ -723,7 +719,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * @return the type of playback associated with this route * @see UserRouteInfo#setPlaybackType(int) */ @@ -732,7 +727,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * @return the stream over which the playback associated with this route is performed * @see UserRouteInfo#setPlaybackStream(int) */ @@ -741,7 +735,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * @return the volume at which the playback associated with this route is performed * @see UserRouteInfo#setVolume(int) */ @@ -760,7 +753,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * @return the maximum volume at which the playback associated with this route is performed * @see UserRouteInfo#setVolumeMax(int) */ @@ -779,7 +771,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * @return how volume is handling on the route * @see UserRouteInfo#setVolumeHandling(int) */ @@ -918,7 +909,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Set a callback to be notified of volume update requests * @param vcb */ @@ -927,7 +917,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Defines whether playback associated with this route is "local" * ({@link RouteInfo#PLAYBACK_TYPE_LOCAL}) or "remote" * ({@link RouteInfo#PLAYBACK_TYPE_REMOTE}). @@ -941,7 +930,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Defines whether volume for the playback associated with this route is fixed * ({@link RouteInfo#PLAYBACK_VOLUME_FIXED}) or can modified * ({@link RouteInfo#PLAYBACK_VOLUME_VARIABLE}). @@ -956,7 +944,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Defines at what volume the playback associated with this route is performed (for user * feedback purposes). This information is only used when the playback is not local. * @param volume @@ -969,7 +956,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Defines the maximum volume at which the playback associated with this route is performed * (for user feedback purposes). This information is only used when the playback is not * local. @@ -983,7 +969,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Defines over what stream type the media is presented. * @param stream */ @@ -1447,7 +1432,6 @@ public class MediaRouter { } /** - * @hide (to be un-hidden) * Interface for receiving events about volume changes. * All methods of this interface will be called from the application's main thread. *