经典蓝牙Android开发(通信)

效果图

经典蓝牙Android开发(通信)_第1张图片

代码展示

第一步:将经典蓝牙的处理封装为一个蓝牙处理类

package com.wust.mycaryaokong.blueToothManage;

import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Parcelable;
import android.text.TextUtils;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.UUID;

/**
 * ClassName: classicBlueTooth 
* Description:
* date: 20

你可能感兴趣的:(Android零碎知识点,蓝牙,socket,安卓)