Most visited

Recently visited

Added in API level 21

AdvertiseData

public final class AdvertiseData
extends Object implements Parcelable

java.lang.Object
   ↳ android.bluetooth.le.AdvertiseData


为Bluetooth LE广告宣传数据包容器。 这代表要公布的数据以及主动扫描的扫描响应数据。

使用 AdvertiseData.Builder创建要广告的实例 AdvertiseData

也可以看看:

Summary

Nested classes

class AdvertiseData.Builder

建造者为AdvertiseData

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<AdvertiseData> CREATOR

Public methods

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

boolean getIncludeDeviceName()

广告数据包中是否包含设备名称。

boolean getIncludeTxPowerLevel()

广播包中是否包含传输功率等级。

SparseArray<byte[]> getManufacturerSpecificData()

返回制造商ID数组和相应的制造商特定数据。

Map<ParcelUuid, byte[]> getServiceData()

返回16位UUID及其相应服务数据的映射。

List<ParcelUuid> getServiceUuids()

返回广告内用于识别蓝牙GATT服务的服务UUID列表。

String toString()

返回对象的字符串表示形式。

void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Added in API level 21
Creator<AdvertiseData> CREATOR

Public methods

describeContents

Added in API level 21
int describeContents ()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)的输出中包含writeToParcel(Parcel, int) ,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR位。

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

getIncludeDeviceName

Added in API level 21
boolean getIncludeDeviceName ()

广告数据包中是否包含设备名称。

Returns
boolean

getIncludeTxPowerLevel

Added in API level 21
boolean getIncludeTxPowerLevel ()

广播包中是否包含传输功率等级。

Returns
boolean

getManufacturerSpecificData

Added in API level 21
SparseArray<byte[]> getManufacturerSpecificData ()

返回制造商ID数组和相应的制造商特定数据。 制造商ID是由蓝牙SIG分配的非负数。

Returns
SparseArray<byte[]>

getServiceData

Added in API level 21
Map<ParcelUuid, byte[]> getServiceData ()

返回16位UUID及其相应服务数据的映射。

Returns
Map<ParcelUuid, byte[]>

getServiceUuids

Added in API level 21
List<ParcelUuid> getServiceUuids ()

返回广告内用于识别蓝牙GATT服务的服务UUID列表。

Returns
List<ParcelUuid>

toString

Added in API level 21
String toString ()

返回对象的字符串表示形式。 一般来说, toString方法会返回一个“文本地表示”该对象的字符串。 结果应该是一个简洁但内容丰富的表述,对于一个人来说很容易阅读。 建议所有子类重写此方法。

ObjecttoString方法返回一个字符串,其中包含对象为实例的类的名称,符号字符“ @ ”以及对象的哈希代码的无符号十六进制表示形式。 换句话说,这个方法返回一个字符串,其值等于:

 getClass().getName() + '@' + Integer.toHexString(hashCode())
 

Returns
String a string representation of the object.

writeToParcel

Added in API level 21
void writeToParcel (Parcel dest, 
                int flags)

将此对象平铺到一个包裹中。

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!