Android 设备间通信方案

在Android开发中,设备间通信是一个非常重要的话题。Android设备间通信可以通过多种方式实现,如蓝牙、Wi-Fi直连、NFC、Socket等。本文将介绍一些常用的Android设备间通信方案,并提供相应的代码示例。

1. 蓝牙通信

蓝牙是一种无线通信技术,可以用于在两个或多个设备之间传输数据。在Android中,可以使用蓝牙API实现设备间通信。以下是一个简单的蓝牙通信的示例代码:

// 初始化蓝牙适配器
BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();

// 打开蓝牙
if (bluetoothAdapter != null && !bluetoothAdapter.isEnabled()) {
    Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
}

// 扫描蓝牙设备
bluetoothAdapter.startDiscovery();

// 监听蓝牙设备的扫描结果
BroadcastReceiver receiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        if (BluetoothDevice.ACTION_FOUND.equals(action)) {
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            // 处理扫描到的蓝牙设备
        }
    }
};

// 注册广播接收器
IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
registerReceiver(receiver, filter);

2. Wi-Fi直连通信

Wi-Fi直连是一种无需中间设备的网络连接方式,可以用于实现设备间的通信。在Android中,可以使用Wi-Fi P2P(Wi-Fi Direct)API实现设备间通信。以下是一个简单的Wi-Fi直连通信的示例代码:

// 初始化Wi-Fi P2P管理器
WifiP2pManager manager = (WifiP2pManager) getSystemService(Context.WIFI_P2P_SERVICE);

// 创建Wi-Fi P2P连接
manager.createGroup(channel, new WifiP2pManager.ActionListener() {
    @Override
    public void onSuccess() {
        // 创建连接成功
    }

    @Override
    public void onFailure(int reason) {
        // 创建连接失败
    }
});

// 监听Wi-Fi P2P连接状态
BroadcastReceiver receiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) {
            // 处理连接状态变化
        }
    }
};

// 注册广播接收器
IntentFilter filter = new IntentFilter(WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION);
registerReceiver(receiver, filter);

3. NFC通信

NFC(Near Field Communication)是一种短距离的无线通信技术,可以用于实现设备间的近场通信。在Android中,可以使用NFC API实现设备间通信。以下是一个简单的NFC通信的示例代码:

// 初始化NFC适配器
NfcAdapter nfcAdapter = NfcAdapter.getDefaultAdapter(this);

// 监听NFC标签的读取
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
        new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

// 过滤NFC标签的类型
IntentFilter[] intentFiltersArray = new IntentFilter[] {
        new IntentFilter(NfcAdapter.ACTION_NDEF_DISCOVERED),
        new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED),
        new IntentFilter(NfcAdapter.ACTION_TAG_DISCOVERED) };

// 处理NFC标签的读取
@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(intent.getAction())) {
        // 处理NDEF格式的NFC标签
        NdefMessage[] messages = getNdefMessages(intent);
        // 处理NDEF消息
    } else if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())) {
        // 处理其他格式的NFC标签
        Parcelable[] rawMsgs = intent.getParcelableArrayExtra(NfcAdapter.EXTRA_NDEF_MESSAGES);
        if (rawMsgs != null) {
            // 处理NDEF消息
        }
    }
}

// 启用前台调度系统
nfcAdapter.enableForegroundDispatch(this, pendingIntent, intentFiltersArray, null);
``