Proper way to find if a paired Android Bluetooth device is in range?

后端 未结 2 1010
暗喜
暗喜 2021-02-19 09:46

I\'m suppose to write an application that will act as the bluetooth client. What I\'m trying to do is figure out is what would be the best way to figure out if the specific dev

相关标签:
2条回答
  • 2021-02-19 10:01

    You can follow below way :

    1. Get paired devices list from bluetooth adapter
    2. Start discovery
    3. When a device is found let's say Device A, you can check if Device A is there in paired devices list or not. If Device A is one of the paired device, means it is a paired available device in range.
    0 讨论(0)
  • 2021-02-19 10:03

    Ok, so as I understand from your question is you want to get name of device you paired with, and if its in range??

    So here is the solution:-

    1. Create a class named DeviceDetails:

    class DeviceDetails{ public String name; public String address; public BluetoothDevice remoteDevice; }

    1. You need to connect and pair your devices as explained here, once this is done and connection is made, create an object of DeviceDetails.

    2. DeviceDetails selectedDevice; and if you have a custom adapter to show list of devices pass on the position of from the view to selectedDevice reference. Example :- selectedDevice = adapter.getItem(pos);

    3. Now you have the SelectedDevice object which you have selected to pair, thus you can save its address and name in

      preferences.

      Example:- 
      savePairedDeviceInfo(selectedDevice.name, selectedDevice.address);
          public void savePairedDeviceInfo(String name, String addr)
              {
                  if(name != null && !name.equalsIgnoreCase(""))
                      editor.putString(PNAME_OF_DEVICE, name);
      
                  if(addr != null && !addr.equalsIgnoreCase(""))
                      editor.putString(MAC_ADDRESS_OF_DEVICE, addr);
      
                  editor.commit();
              }
      
    4. Now, next time when ever you want to check if setup of pairing is done or not check for name and address of the device by getting values from preferences. Use a check(if cond.) to return true that older device that was paired was same or some other.

    5. If paired device is in range you would get the same value else it would try to pair with some other device.

    Let me know, if you understood from my explanation or not.

    0 讨论(0)
提交回复
热议问题