小编Ale*_*tny的帖子

Xamarin蓝牙扫描

今天,我开始使用C#进行开发,并尝试扫描信标。这是我走多远。

        protected override void OnCreate(Bundle bundle)
    {
        base.OnCreate(bundle);            
        // Set our view from the "main" layout resource
        SetContentView(Resource.Layout.Main);

        BluetoothAdapter oBluetoothAdapter = BluetoothAdapter.DefaultAdapter;
        BluetoothLeScanner oScanner = oBluetoothAdapter.BluetoothLeScanner;

        ScanCallback oCallback;



        if(!oBluetoothAdapter.IsEnabled)
        {
            StartActivity(new Intent(BluetoothAdapter.ActionRequestEnable));
        } 
        else
        {
            oScanner.StartScan(oCallback);
        }
    }
Run Code Online (Sandbox Code Playgroud)

问题是我不知道如何使用StartScan函数的回调参数。有人可以告诉我如何使用回调吗?

c# android bluetooth xamarin

2
推荐指数
1
解决办法
2193
查看次数

标签 统计

android ×1

bluetooth ×1

c# ×1

xamarin ×1