xamarin.android蓝牙,在Android上连接Xamarin的配对蓝牙设备

请记住,Xamarin绑定到本机api所以不要担心某些“与本机方式有关”;)基于你引用的anwser我编写并测试了下面的代码 . 我希望它会对你有所帮助 .

class btListener : Java.Lang.Object, IBluetoothProfileServiceListener

{

public void OnServiceConnected([GeneratedEnum] ProfileType profile, IBluetoothProfile proxy)

{

String deviceName = "JABRA WAVE+";

BluetoothDevice result = null;

var devices = BluetoothAdapter.DefaultAdapter.BondedDevices;

if (devices != null)

{

foreach (BluetoothDevice device in devices)

{

if (deviceName == device.Name)

{

result = device;

break;

}

}

}

var connect = Java.Lang.Class.FromType(typeof(BluetoothA2dp)).GetDeclaredMethod("connect", Java.Lang.Class.FromType(typeof(BluetoothDevice)));

connect.Invoke((Java.Lang.Object)proxy, result);

}

public void OnServiceDisconnected([GeneratedEnum] ProfileType profile)

{

}

}

以下代码如下OnCreate功能:

btListener btReceiver = new btListener();

BluetoothAdapter.DefaultAdapter.GetProfileProxy(this, btReceiver, ProfileType.A2dp);

只是看了一下日期..但我还是张贴了答案 - 也许它仍然会帮助某人

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值