AdvertiseSettings
public final class AdvertiseSettings
extends Object implements Parcelable
| java.lang.Object | |
| ↳ | android.bluetooth.le.AdvertiseSettings |
The AdvertiseSettings provide a way to adjust advertising preferences for each Bluetooth LE advertisement instance. Use AdvertiseSettings.Builder to create an instance of this class.
Summary
Nested classes | |
|---|---|
class | AdvertiseSettings.Builder Builder class for |
Constants | |
|---|---|
int | ADVERTISE_MODE_BALANCED Perform Bluetooth LE advertising in balanced power mode. |
int | ADVERTISE_MODE_LOW_LATENCY Perform Bluetooth LE advertising in low latency, high power mode. |
int | ADVERTISE_MODE_LOW_POWER Perform Bluetooth LE advertising in low power mode. |
int | ADVERTISE_TX_POWER_HIGH Advertise using high TX power level. |
int | ADVERTISE_TX_POWER_LOW Advertise using low TX power level. |
int | ADVERTISE_TX_POWER_MEDIUM Advertise using medium TX power level. |
int | ADVERTISE_TX_POWER_ULTRA_LOW Advertise using the lowest transmission (TX) power level. |
Inherited constants |
|---|
Fields | |
|---|---|
public static final Creator<AdvertiseSettings> | CREATOR
|
Public methods | |
|---|---|
int | describeContents() Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. |
int | getMode() Returns the advertise mode. |
int | getTimeout() Returns the advertising time limit in milliseconds. |
int | getTxPowerLevel() Returns the TX power level for advertising. |
boolean | isConnectable() Returns whether the advertisement will indicate connectable. |
boolean | isDiscoverable() Returns whether the advertisement will be discoverable. |
String | toString() Returns a string representation of the object. |
void | writeToParcel(Parcel dest, int flags) Flatten this object in to a Parcel. |
Inherited methods | |
|---|---|
Constants
ADVERTISE_MODE_BALANCED
public static final int ADVERTISE_MODE_BALANCED
Perform Bluetooth LE advertising in balanced power mode. This is balanced between advertising frequency and power consumption.
Constant Value: 1 (0x00000001)
ADVERTISE_MODE_LOW_LATENCY
public static final int ADVERTISE_MODE_LOW_LATENCY
Perform Bluetooth LE advertising in low latency, high power mode. This has the highest power consumption and should not be used for continuous background advertising.
Constant Value: 2 (0x00000002)
ADVERTISE_MODE_LOW_POWER
public static final int ADVERTISE_MODE_LOW_POWER
Perform Bluetooth LE advertising in low power mode. This is the default and preferred advertising mode as it consumes the least power.
Constant Value: 0 (0x00000000)
ADVERTISE_TX_POWER_HIGH
public static final int ADVERTISE_TX_POWER_HIGH
Advertise using high TX power level. This corresponds to largest visibility range of the advertising packet.
Constant Value: 3 (0x00000003)
ADVERTISE_TX_POWER_LOW
public static final int ADVERTISE_TX_POWER_LOW
Advertise using low TX power level.
Constant Value: 1 (0x00000001)
ADVERTISE_TX_POWER_MEDIUM
public static final int ADVERTISE_TX_POWER_MEDIUM
Advertise using medium TX power level.
Constant Value: 2 (0x00000002)
ADVERTISE_TX_POWER_ULTRA_LOW
public static final int ADVERTISE_TX_POWER_ULTRA_LOW
Advertise using the lowest transmission (TX) power level. Low transmission power can be used to restrict the visibility range of advertising packets.
Constant Value: 0 (0x00000000)
Fields
Public methods
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(android.os.Parcel, int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.
| Returns | |
|---|---|
int | a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or CONTENTS_FILE_DESCRIPTOR |
getTimeout
public int getTimeout ()
Returns the advertising time limit in milliseconds.
| Returns | |
|---|---|
int | |
getTxPowerLevel
public int getTxPowerLevel ()
Returns the TX power level for advertising.
| Returns | |
|---|---|
int | |
isConnectable
public boolean isConnectable ()
Returns whether the advertisement will indicate connectable.
| Returns | |
|---|---|
boolean | |
isDiscoverable
public boolean isDiscoverable ()
Returns whether the advertisement will be discoverable.
| Returns | |
|---|---|
boolean | |
toString
public String toString ()
Returns a string representation of the object.
| Returns | |
|---|---|
String | a string representation of the object. |
writeToParcel
public void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
dest | Parcel: The Parcel in which the object should be written. This value cannot be null. |
flags | int: Additional flags about how the object should be written. May be 0 or Parcelable.PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of Parcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.