簡體   English   中英

在Android中配對兩個藍牙設備

[英]pair two bluetooth devices in android

我希望用戶在列表中選擇的設備配對。 在程序中搜索藍牙設備,並向用戶顯示藍牙設備列表。

if(ba.isEnabled()){
            if (ba.isDiscovering()) {
                ba.cancelDiscovery();
            }
            ba.startDiscovery();

            final BroadcastReceiver mReceiver = 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 address to an array adapter to show in a ListView
                        arr.add(device.getName() + "\n" + device.getAddress());
                        adapter.notifyDataSetChanged();
                        adapter.notifyDataSetInvalidated();
                    }
                }
            };
            // Register the BroadcastReceiver
            IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
            registerReceiver(mReceiver, filter); // Don't forget to unregister during onDestroy
        }

進入sdk> sample> android-7> BluetoothChat。在您的日食中導入BluetoothChat演示應用程序,它將對您有所幫助

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM