Merge "HFP: Modify comments for ACTION_HF_INDICATORS_VALUE_CHANGED (1/2)"

am: 5790bae2f4

Change-Id: I480ef38d5aa61aa153ee53d325e8b249c1eab222
This commit is contained in:
Andre Eisenbach
2017-06-29 08:39:40 +00:00
committed by android-build-merger

View File

@@ -229,31 +229,31 @@ public final class BluetoothHeadset implements BluetoothProfile {
* <ul> * <ul>
* <li> {@link #EXTRA_HF_INDICATORS_IND_ID} - The Assigned number of headset Indicator which * <li> {@link #EXTRA_HF_INDICATORS_IND_ID} - The Assigned number of headset Indicator which
* is supported by the headset ( as indicated by AT+BIND command in the SLC * is supported by the headset ( as indicated by AT+BIND command in the SLC
* sequence).or whose value is changed (indicated by AT+BIEV command) </li> * sequence) or whose value is changed (indicated by AT+BIEV command) </li>
* <li> {@link #EXTRA_HF_INDICATORS_IND_VALUE}- The updated value of headset indicator. </li> * <li> {@link #EXTRA_HF_INDICATORS_IND_VALUE} - Updated value of headset indicator. </li>
* <li> {@link BluetoothDevice#EXTRA_DEVICE} - The remote device. </li> * <li> {@link BluetoothDevice#EXTRA_DEVICE} - Remote device. </li>
* </ul> * </ul>
* <p>{@link #EXTRA_HF_INDICATORS_IND_ID} is defined by Bluetooth SIG and each of the indicators are * <p>{@link #EXTRA_HF_INDICATORS_IND_ID} is defined by Bluetooth SIG and each of the indicators
* given an assigned number. Below shows the assigned number of Indicator added so far * are given an assigned number. Below shows the assigned number of Indicator added so far
* - Enhanced Safety - 1 * - Enhanced Safety - 1, Valid Values: 0 - Disabled, 1 - Enabled
* <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission to * - Battery Level - 2, Valid Values: 0~100 - Remaining level of Battery
* receive. * <p>Requires {@link android.Manifest.permission#BLUETOOTH} permission to receive.
* @hide * @hide
*/ */
public static final String ACTION_HF_INDICATORS_VALUE_CHANGED = public static final String ACTION_HF_INDICATORS_VALUE_CHANGED =
"android.bluetooth.headset.action.HF_INDICATORS_VALUE_CHANGED"; "android.bluetooth.headset.action.HF_INDICATORS_VALUE_CHANGED";
/** /**
* A String extra field in {@link #ACTION_HF_INDICATORS_VALUE_CHANGED} * A int extra field in {@link #ACTION_HF_INDICATORS_VALUE_CHANGED}
* intents that contains the UUID of the headset indicator (as defined by Bluetooth SIG) * intents that contains the assigned number of the headset indicator as defined by
* that is being sent. * Bluetooth SIG that is being sent. Value range is 0-65535 as defined in HFP 1.7
* @hide * @hide
*/ */
public static final String EXTRA_HF_INDICATORS_IND_ID = public static final String EXTRA_HF_INDICATORS_IND_ID =
"android.bluetooth.headset.extra.HF_INDICATORS_IND_ID"; "android.bluetooth.headset.extra.HF_INDICATORS_IND_ID";
/** /**
* A int extra field in {@link #ACTION_HF_INDICATORS_VALUE_CHANGED} * A int extra field in {@link #ACTION_HF_INDICATORS_VALUE_CHANGED}
* intents that contains the value of the Headset indicator that is being sent. * intents that contains the value of the Headset indicator that is being sent.
* @hide * @hide
*/ */