java.lang.Object |
↳ |
android.support.v4.media.session.MediaControllerCompat.PlaybackInfo |
Class Overview
Holds information about the way volume is handled for this session.
Summary
Public Methods |
int
|
getAudioStream()
Get the stream this is currently controlling volume on.
|
int
|
getCurrentVolume()
Get the current volume for this session.
|
int
|
getMaxVolume()
Get the maximum volume that may be set for this session.
|
int
|
getPlaybackType()
Get the type of volume handling, either local or remote.
|
int
|
getVolumeControl()
Get the type of volume control that can be used.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
Constants
public
static
final
int
PLAYBACK_TYPE_LOCAL
The session uses local playback.
Constant Value:
1
(0x00000001)
public
static
final
int
PLAYBACK_TYPE_REMOTE
The session uses remote playback.
Constant Value:
2
(0x00000002)
Public Methods
public
int
getAudioStream
()
Get the stream this is currently controlling volume on. When the volume
type is PLAYBACK_TYPE_REMOTE
this value does not
have meaning and should be ignored.
Returns
- The stream this session is playing on.
public
int
getCurrentVolume
()
Get the current volume for this session.
Returns
- The current volume where this session is playing.
public
int
getMaxVolume
()
Get the maximum volume that may be set for this session.
Returns
- The maximum allowed volume where this session is playing.
public
int
getPlaybackType
()
Get the type of volume handling, either local or remote. One of:
Returns
- The type of volume handling this session is using.
public
int
getVolumeControl
()
Get the type of volume control that can be used. One of:
Returns
- The type of volume control that may be used with this
session.