6

我正在使用来自 Android 开发者网站的代码来检测范围内的蓝牙设备,并将它们添加到 ArrayAdapter。问题是,每个设备都被添加到 ArrayAdapter 5-6 次。现在,我只是使用这里的代码:http: //developer.android.com/guide/topics/connectivity/bluetooth.html#DiscoveringDevices

这是我所拥有的:

mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();      
mBluetoothAdapter.startDiscovery();

final BroadcastReceiver mReceiver = new BroadcastReceiver() {
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();

        // When discovery finds a device
        if (BluetoothDevice.ACTION_FOUND.equals(action)) {
            // Get the BluetoothDevice object from the Intent
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

            // Add the name and address to an array adapter to show in a ListView
            mArrayAdapter.add(device.getName() + "\n" + device.getAddress());
        }
    }
};

知道是什么原因造成的吗?我该怎么做才能让设备只添加一次到 ArrayAdapter,而不是 5 次?

4

1 回答 1

6

我不确定这是一个错误还是什么,但我在我的一些设备上也遇到过这种情况。为了解决这个问题,List只需一次添加找到的设备并进行一些检查。见下文:

private List<BluetoothDevice> tmpBtChecker = new ArrayList<BluetoothDevice>();

    final BroadcastReceiver mReceiver = new BroadcastReceiver() {
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();

            // When discovery starts    
            if(BluetoothAdapter.ACTION_DISCOVERY_STARTED.equals(action)){
                //clearing any existing list data
                tmpBtChecker.clear();
            }

            // When discovery finds a device
            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                // Get the BluetoothDevice object from the Intent
                BluetoothDevice device = 
                    intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);

                // Add the name and address to an array adapter
                if(!tmpBtChecker.contains(device)){
                   tmpBtChecker.add(device);
                   mArrayAdapter.add(device.getName()+"\n"+device.getAddress());
                }
            }
        }
    };
于 2012-07-31T15:08:30.690 回答