AudioAttributesCompat
public class AudioAttributesCompat implements VersionedParcelable
A class to encapsulate a collection of attributes describing information about an audio stream.
AudioAttributesCompat supersede the notion of stream types (see for instance STREAM_MUSIC or STREAM_ALARM) for defining the behavior of audio playback. Attributes allow an application to specify more information than is conveyed in a stream type by allowing the application to define:
- usage: "why" you are playing a sound, what is this sound used for. This is achieved with the "usage" information. Examples of usage are
USAGE_MEDIAandUSAGE_ALARM. These two examples are the closest to stream types, but more detailed use cases are available. Usage information is more expressive than a stream type, and allows certain platforms or routing policies to use this information for more refined volume or routing decisions. Usage is the most important information to supply inAudioAttributesCompatand it is recommended to build any instance with this information supplied, seeAudioAttributesCompat.Builderfor exceptions. - content type: "what" you are playing. The content type expresses the general category of the content. This information is optional. But in case it is known (for instance
CONTENT_TYPE_MOVIEfor a movie streaming service orCONTENT_TYPE_MUSICfor a music playback application) this information might be used by the audio framework to selectively configure some audio post-processing blocks. - flags: "how" is playback to be affected, see the flag definitions for the specific playback behaviors they control.
AudioAttributesCompat instance is built through its builder, AudioAttributesCompat.Builder. Also see android.media.AudioAttributes for the framework implementation of this class.
Summary
Nested types |
|---|
public class AudioAttributesCompat.BuilderBuilder class for |
Constants |
|
|---|---|
static final int |
Content type value to use when the content type is a soundtrack, typically accompanying a movie or TV program. |
static final int |
Content type value to use when the content type is music. |
static final int |
Content type value to use when the content type is a sound used to accompany a user action, such as a beep or sound effect expressing a key click, or event, such as the type of a sound for a bonus being received in a game. |
static final int |
Content type value to use when the content type is speech. |
static final int |
Content type value to use when the content type is unknown, or other than the ones defined. |
static final int |
Flag defining a behavior where the audibility of the sound will be ensured by the system. |
static final int |
FLAG_HW_AV_SYNC = 16Flag requesting the use of an output stream supporting hardware A/V synchronization. |
static final int |
USAGE_ALARM = 4Usage value to use when the usage is an alarm (e.g. wake-up alarm). |
static final int |
Usage value to use when the usage is for accessibility, such as with a screen reader. |
static final int |
Usage value to use when the usage is driving or navigation directions. |
static final int |
Usage value to use when the usage is sonification, such as with user interface sounds. |
static final int |
USAGE_ASSISTANT = 16Usage value to use for audio responses to user queries, audio instructions or help utterances. |
static final int |
USAGE_GAME = 14Usage value to use when the usage is for game audio. |
static final int |
USAGE_MEDIA = 1Usage value to use when the usage is media, such as music, or movie soundtracks. |
static final int |
Usage value to use when the usage is notification. |
static final int |
Usage value to use when the usage is notification for a non-immediate type of communication such as e-mail. |
static final int |
Usage value to use when the usage is notification for an "instant" communication such as a chat, or SMS. |
static final int |
Usage value to use when the usage is a request to enter/end a communication, such as a VoIP communication or video-conference. |
static final int |
Usage value to use when the usage is to attract the user's attention, such as a reminder or low battery warning. |
static final int |
Usage value to use when the usage is telephony ringtone. |
static final int |
USAGE_UNKNOWN = 0Usage value to use when the usage is unknown. |
static final int |
Usage value to use when the usage is voice communications, such as telephony or VoIP. |
static final int |
Usage value to use when the usage is in-call signalling, such as with a "busy" beep, or DTMF tones. |
Public methods |
|
|---|---|
boolean |
|
int |
Returns the content type. |
int |
getFlags()Returns the flags. |
int |
Returns a stream type passed to |
int |
getUsage()Returns the usage. |
int |
Returns the stream type matching the given attributes for volume control. |
int |
hashCode() |
String |
toString() |
@Nullable Object |
unwrap()If the current SDK level is 21 or higher, return the |
static @Nullable AudioAttributesCompat |
Creates an |
Constants
CONTENT_TYPE_MOVIE
public static final int CONTENT_TYPE_MOVIE = 3
Content type value to use when the content type is a soundtrack, typically accompanying a movie or TV program.
CONTENT_TYPE_MUSIC
public static final int CONTENT_TYPE_MUSIC = 2
Content type value to use when the content type is music.
CONTENT_TYPE_SONIFICATION
public static final int CONTENT_TYPE_SONIFICATION = 4
Content type value to use when the content type is a sound used to accompany a user action, such as a beep or sound effect expressing a key click, or event, such as the type of a sound for a bonus being received in a game. These sounds are mostly synthesized or short Foley sounds.
CONTENT_TYPE_SPEECH
public static final int CONTENT_TYPE_SPEECH = 1
Content type value to use when the content type is speech.
CONTENT_TYPE_UNKNOWN
public static final int CONTENT_TYPE_UNKNOWN = 0
Content type value to use when the content type is unknown, or other than the ones defined.
FLAG_AUDIBILITY_ENFORCED
public static final int FLAG_AUDIBILITY_ENFORCED = 1
Flag defining a behavior where the audibility of the sound will be ensured by the system.
FLAG_HW_AV_SYNC
public static final int FLAG_HW_AV_SYNC = 16
Flag requesting the use of an output stream supporting hardware A/V synchronization.
USAGE_ALARM
public static final int USAGE_ALARM = 4
Usage value to use when the usage is an alarm (e.g. wake-up alarm).
USAGE_ASSISTANCE_ACCESSIBILITY
public static final int USAGE_ASSISTANCE_ACCESSIBILITY = 11
Usage value to use when the usage is for accessibility, such as with a screen reader.
USAGE_ASSISTANCE_NAVIGATION_GUIDANCE
public static final int USAGE_ASSISTANCE_NAVIGATION_GUIDANCE = 12
Usage value to use when the usage is driving or navigation directions.
USAGE_ASSISTANCE_SONIFICATION
public static final int USAGE_ASSISTANCE_SONIFICATION = 13
Usage value to use when the usage is sonification, such as with user interface sounds.
USAGE_ASSISTANT
public static final int USAGE_ASSISTANT = 16
Usage value to use for audio responses to user queries, audio instructions or help utterances.
USAGE_GAME
public static final int USAGE_GAME = 14
Usage value to use when the usage is for game audio.
USAGE_MEDIA
public static final int USAGE_MEDIA = 1
Usage value to use when the usage is media, such as music, or movie soundtracks.
USAGE_NOTIFICATION
public static final int USAGE_NOTIFICATION = 5
Usage value to use when the usage is notification. See other notification usages for more specialized uses.
USAGE_NOTIFICATION_COMMUNICATION_DELAYED
public static final int USAGE_NOTIFICATION_COMMUNICATION_DELAYED = 9
Usage value to use when the usage is notification for a non-immediate type of communication such as e-mail.
USAGE_NOTIFICATION_COMMUNICATION_INSTANT
public static final int USAGE_NOTIFICATION_COMMUNICATION_INSTANT = 8
Usage value to use when the usage is notification for an "instant" communication such as a chat, or SMS.
USAGE_NOTIFICATION_COMMUNICATION_REQUEST
public static final int USAGE_NOTIFICATION_COMMUNICATION_REQUEST = 7
Usage value to use when the usage is a request to enter/end a communication, such as a VoIP communication or video-conference.
USAGE_NOTIFICATION_EVENT
public static final int USAGE_NOTIFICATION_EVENT = 10
Usage value to use when the usage is to attract the user's attention, such as a reminder or low battery warning.
USAGE_NOTIFICATION_RINGTONE
public static final int USAGE_NOTIFICATION_RINGTONE = 6
Usage value to use when the usage is telephony ringtone.
USAGE_UNKNOWN
public static final int USAGE_UNKNOWN = 0
Usage value to use when the usage is unknown.
USAGE_VOICE_COMMUNICATION
public static final int USAGE_VOICE_COMMUNICATION = 2
Usage value to use when the usage is voice communications, such as telephony or VoIP.
USAGE_VOICE_COMMUNICATION_SIGNALLING
public static final int USAGE_VOICE_COMMUNICATION_SIGNALLING = 3
Usage value to use when the usage is in-call signalling, such as with a "busy" beep, or DTMF tones.
Public methods
getContentType
public int getContentType()
Returns the content type.
| Returns | |
|---|---|
int |
one of the values that can be set in |
getFlags
public int getFlags()
Returns the flags.
| Returns | |
|---|---|
int |
a combined mask of all flags |
getLegacyStreamType
public int getLegacyStreamType()
Returns a stream type passed to setLegacyStreamType, or best guessing from flags and usage, or -1 if there is no converting logic in framework side (API 21+).
| Returns | |
|---|---|
int |
the stream type {@see AudioManager} |
getUsage
public int getUsage()
Returns the usage.
| Returns | |
|---|---|
int |
one of the values that can be set in |
getVolumeControlStream
public int getVolumeControlStream()
Returns the stream type matching the given attributes for volume control. Use this method to derive the stream type needed to configure the volume control slider in an android.app.Activity with setVolumeControlStream. Do not use this method to set the stream type on an audio player object (e.g. android.media.AudioTrack, android.media.MediaPlayer) as this is deprecated; use AudioAttributes instead.
| Returns | |
|---|---|
int |
a valid stream type for |
unwrap
public @Nullable Object unwrap()
If the current SDK level is 21 or higher, return the AudioAttributes object inside this AudioAttributesCompat. Otherwise null.
| Returns | |
|---|---|
@Nullable Object |
the underlying |
wrap
public static @Nullable AudioAttributesCompat wrap(@NonNull Object aa)
Creates an AudioAttributesCompat given an API 21 AudioAttributes object.
| Parameters | |
|---|---|
@NonNull Object aa |
an instance of |
| Returns | |
|---|---|
@Nullable AudioAttributesCompat |
the new |