本文整理汇总了Java中no.nordicsemi.android.support.v18.scanner.ScanResult.getScanRecord方法的典型用法代码示例。如果您正苦于以下问题:Java ScanResult.getScanRecord方法的具体用法?Java ScanResult.getScanRecord怎么用?Java ScanResult.getScanRecord使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类no.nordicsemi.android.support.v18.scanner.ScanResult
的用法示例。
在下文中一共展示了ScanResult.getScanRecord方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: update
import no.nordicsemi.android.support.v18.scanner.ScanResult; //导入方法依赖的package包/类
/**
* Updates the list of not bonded devices.
* @param results list of results from the scanner
*/
public void update(final List<ScanResult> results) {
for (final ScanResult result : results) {
final ExtendedBluetoothDevice device = findDevice(result);
if (device == null) {
mListValues.add(new ExtendedBluetoothDevice(result));
} else {
device.name = result.getScanRecord() != null ? result.getScanRecord().getDeviceName() : null;
device.rssi = result.getRssi();
}
}
notifyDataSetChanged();
}
示例2: update
import no.nordicsemi.android.support.v18.scanner.ScanResult; //导入方法依赖的package包/类
/**
* If such device exists on the bonded device list, this method does nothing. If not then the device is updated (rssi value) or added.
*
* @param results scan results
*/
public void update(final List<ScanResult> results) {
for (final ScanResult result : results) {
final ExtendedBluetoothDevice device = findDevice(result);
if (device == null) {
mDevices.add(new ExtendedBluetoothDevice(result));
} else {
device.name = result.getScanRecord() != null ? result.getScanRecord().getDeviceName() : null;
device.rssi = result.getRssi();
}
}
notifyDataSetChanged();
}
示例3: ExtendedBluetoothDevice
import no.nordicsemi.android.support.v18.scanner.ScanResult; //导入方法依赖的package包/类
public ExtendedBluetoothDevice(final ScanResult result) {
mBluetoothDevice = result.getDevice();
if (result.getScanRecord() != null)
mName = result.getScanRecord().getDeviceName();
else
mName = mBluetoothDevice.getName();
}
示例4: ExtendedBluetoothDevice
import no.nordicsemi.android.support.v18.scanner.ScanResult; //导入方法依赖的package包/类
public ExtendedBluetoothDevice(final ScanResult scanResult) {
this.device = scanResult.getDevice();
this.name = scanResult.getScanRecord() != null ? scanResult.getScanRecord().getDeviceName() : null;
this.rssi = scanResult.getRssi();
this.isBonded = false;
}
示例5: ExtendedBluetoothDevice
import no.nordicsemi.android.support.v18.scanner.ScanResult; //导入方法依赖的package包/类
public ExtendedBluetoothDevice(final ScanResult scanResult) {
this.device = scanResult.getDevice();
this.name = scanResult.getScanRecord() != null ? scanResult.getScanRecord().getDeviceName() : null;
this.rssi = scanResult.getRssi();
}
开发者ID:NordicSemiconductor,项目名称:Android-nRF-Beacon-for-Eddystone,代码行数:6,代码来源:ExtendedBluetoothDevice.java