gpt4 book ai didi

android - 如何识别 ArrayAdapter 中的现有项目

转载 作者:行者123 更新时间:2023-11-30 03:58:22 25 4
gpt4 key购买 nike

我正在将设备列表添加到 ArrayAdapter 并在 ListView 中显示,其中设备列表来自蓝牙扫描,扫描的设备首先添加到 arrayadapter。然后我将它添加到 ListView 以向用户显示扫描的蓝牙设备列表。

但是当我扫描设备时,重复的设备正在添加,假设一个设备 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);
}
}

它是Android 4.1版本示例中的一个程序,示例名称是Bluetooth Chat。其中 Activity 是 DeviceListActivityScan.java

最佳答案

我在我的两部手机上运行这个演示,只有一部会扫描多次。所以我想这与设备有关。

你可以这样做来避免它:

            if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
String deviceInfo = device.getName() + "\n" + device.getAddress();
if(mNewDevicesArrayAdapter.getPosition(deviceInfo) < 0) {
mNewDevicesArrayAdapter.add(deviceInfo);
}
}

关于android - 如何识别 ArrayAdapter<string> 中的现有项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12970632/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com