diff options
author | Tyler Gunn <tgunn@google.com> | 2015-06-09 22:04:07 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-06-09 22:04:10 +0000 |
commit | 69c4e2c57eb587709452d3319136da19db5e465b (patch) | |
tree | 3297f43c8926e88b1f0b919f8f9a42faf40f6b2e /telecomm/java/android | |
parent | 12149b699e21a6c11285391c1fcef25a07fcf066 (diff) | |
parent | bc6f12ee42f810a68ef4d1e9185d42cd10124d9a (diff) | |
download | frameworks_base-69c4e2c57eb587709452d3319136da19db5e465b.zip frameworks_base-69c4e2c57eb587709452d3319136da19db5e465b.tar.gz frameworks_base-69c4e2c57eb587709452d3319136da19db5e465b.tar.bz2 |
Merge "Remove use of STATE_AUDIO_ONLY in a comparison." into mnc-dev
Diffstat (limited to 'telecomm/java/android')
-rw-r--r-- | telecomm/java/android/telecom/VideoProfile.java | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/VideoProfile.java b/telecomm/java/android/telecom/VideoProfile.java index 11a4976..dabf706 100644 --- a/telecomm/java/android/telecom/VideoProfile.java +++ b/telecomm/java/android/telecom/VideoProfile.java @@ -49,7 +49,32 @@ public class VideoProfile implements Parcelable { public static final int QUALITY_DEFAULT = 4; /** - * Call is currently in an audio-only mode with no video transmission or receipt. + * Used when answering or dialing a call to indicate that the call does not have a video + * component. + * <p> + * Should <b>not</b> be used in comparison checks to determine if a video state represents an + * audio-only call. + * <p> + * The following, for example, is not the correct way to check if a call is audio-only: + * <pre> + * {@code + * // This is the incorrect way to check for an audio-only call. + * if (videoState == VideoProfile.STATE_AUDIO_ONLY) { + * // Handle audio-only call. + * } + * } + * </pre> + * <p> + * Instead, use the {@link VideoProfile#isAudioOnly(int)} helper function to check if a + * video state represents an audio-only call: + * <pre> + * {@code + * // This is the correct way to check for an audio-only call. + * if (VideoProfile.isAudioOnly(videoState)) { + * // Handle audio-only call. + * } + * } + * </pre> */ public static final int STATE_AUDIO_ONLY = 0x0; |