我将设备列表添加到 ArrayAdapter 并在 ListView 中显示,其中设备列表是从蓝牙扫描中获取的,扫描的设备首先添加到 arrayadapter。然后稍后我将其添加到列表视图中,以向用户显示扫描的蓝牙设备列表。
但是当我正在扫描设备时,正在添加重复的设备,假设扫描了一个设备,A
则意味着再次扫描其显示设备的两到三倍A
。我只想显示一次扫描设备的列表。如何实现它。抱歉,如果问题含糊不清。
以下代码用于查询新设备并将其添加到 arrayadapter:
if (BluetoothDevice.ACTION_FOUND.equals(action))
{
// Get the BluetoothDevice object from the Intent
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// If it's already paired, skip it, because it's been listed already
if (device.getBondState() != BluetoothDevice.BOND_BONDED)
{
mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress());
}
// When discovery is finished, change the Activity title
} else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
setProgressBarIndeterminateVisibility(false);
setTitle(R.string.select_device);
if (mNewDevicesArrayAdapter.getCount() == 0) {
String noDevices = getResources().getText(R.string.none_found).toString();
mNewDevicesArrayAdapter.add(noDevices);
}
}
它是 4.1 版 Android 示例中的一个程序,示例名称为Bluetooth Chat
. 活动在哪里DeviceListActivityScan.java
。