Android蓝牙:找不到手机

时间:2018-07-03 16:06:31

标签: c# bluetooth xamarin.android android-bluetooth

按照指南here,我创建了一个应用程序,该应用程序查找附近的蓝牙设备并将其名称(如果有),地址和rssi记录到一个简单的列表视图中。

我的目标是过滤结果以查找附近所有可发现的电话及其RSSI。但是,我没有在附近的其他设备的列表中看到我的iPhone。我通过设置->常规->关于知道手机的MAC地址,并且手机上有bluetooth enabled and is discoverable

我的手机离设备约一英尺远,因此设备应该可以将其拿起(它可以从整个房间发现我的笔记本电脑)。如何确保可以找到我的电话和其他电话?

注意:我正在使用c#和Xamarin.Android for Android 6.0.1版进行开发。

更新: 这是我用来进行发现的代码-

static int REQUEST_ENABLE_BT = 1;
BluetoothBroadcastReceiver btReceiver;
BluetoothAdapter btAdapter = BluetoothAdapter.DefaultAdapter
//check status of bluetooth and enable if possible
...
//Discover bluetooth devices
btReceiver = new BluetoothBroadcastReceiver(this);
IntentFilter filter = new IntentFilter(BluetoothDevice.ActionFound);
RegisterReceiver(btReceiver, filter);
btAdapter.StartDiscovery();
//custom BroadcastReceiver to take ActionFound
public class BluetoothBroadcastReceiver : BroadcastReceiver
    {
        Activity activity;
        public BluetoothBroadcastReceiver(Activity activity)
        {
            this.activity = activity;
        }
        public override void OnReceive(Context context, Intent intent)
        {
            string action = intent.Action;
            if (BluetoothDevice.ActionFound.Equals(action))
            {
                //Discovery has found a device. Get info
                BluetoothDevice device = (Android.Bluetooth.BluetoothDevice)intent.GetParcelableExtra(BluetoothDevice.ExtraDevice);
                string deviceName = device.Name;
                string deviceAddress = device.Address;
                short RSSI = intent.GetShortExtra(BluetoothDevice.ExtraRssi,(short)0);
                string result = deviceName + " " + deviceAddress + " " + RSSI;
                newDevicesArrayAdapter.Add(result);
            }
        }
    }

谢谢!

1 个答案:

答案 0 :(得分:0)

上面的代码对于发现处于“可发现”模式的附近设备是正确的。但是,似乎只有在导航到其蓝牙设置页面后才能真正发现手机。

至少不是iPhone 7/8或三星Galaxy S8。