Android Studio Sign in
Added in API level 18

BluetoothAdapter.LeScanCallback


public static interface BluetoothAdapter.LeScanCallback

android.bluetooth.BluetoothAdapter.LeScanCallback


Callback interface used to deliver LE scan results.

Summary

Public methods

abstract void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord)

Callback reporting an LE device found during a device scan initiated by the BluetoothAdapter.startLeScan(LeScanCallback) function.

Public methods

onLeScan

Added in API level 18
public abstract void onLeScan (BluetoothDevice device, 
                int rssi, 
                byte[] scanRecord)

Callback reporting an LE device found during a device scan initiated by the BluetoothAdapter.startLeScan(LeScanCallback) function.

Parameters
device BluetoothDevice: Identifies the remote device

rssi int: The RSSI value for the remote device as reported by the Bluetooth hardware. 0 if no RSSI value is available.

scanRecord byte: The content of the advertisement record offered by the remote device.

Morty Proxy This is a proxified and sanitized view of the page, visit original site.