如何让android蓝牙继续扫描

时间:2015-07-06 04:27:23

标签: android bluetooth

嗨,这是我第一次发帖。 我正在制作一个只使用友好名称和mac地址发现蓝牙设备的Android应用程序。不配对。

我面临的问题是我的设备在开始扫描大约10到12秒后无法检测到进入该范围的新设备。

final BroadcastReceiver bReceiver = 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 the MAC address of the object to the arrayAdapter
            // System.out.println(device.getAddress());

             for(int i=0;i<listmac.size();i++)
             {
                 if(listmac.get(i).equals(device.getAddress())){
                    System.out.println(listname.get(i));
                    myListView.setItemChecked(i, true);
                    }
             } 
        }
    }
};

public void find(View view) {
       if (myBluetoothAdapter.isDiscovering()) {
           // the button is pressed when it discovers, so cancel the discovery
           myBluetoothAdapter.cancelDiscovery();
       }
       else {
            myBluetoothAdapter.startDiscovery();

            registerReceiver(bReceiver, new IntentFilter(BluetoothDevice.ACTION_FOUND));
            isBreceiverRegisted = true;
        }    
   }

 public void off(){
      myBluetoothAdapter.disable();

      Toast.makeText(getApplicationContext(),"Bluetooth turned off",
              Toast.LENGTH_LONG).show();
   }

对不起我的英语

1 个答案:

答案 0 :(得分:0)

仅仅因为发现任务有超时以防止无休止的搜索。 为了能够检测到该发现已结束,您需要添加此意图

if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
      // When discovery is finished , start discovery again  
         myBluetoothAdapter.startDiscovery(); 
      } 
    } 

一般要非常小心,不小心将设备置于发现模式。 执行设备发现对于蓝牙适配器来说是一个繁重的过程,并且会占用大量资源。