蓝牙技术在智能硬件方面有很多用武之地,今天我就为大家分享一下蓝牙在Android系统下的使用方法技巧,并实现一下两个终端间数据的传输。
蓝牙(Bluetooth)是一种短距离的无线通信技术标准,蓝牙协议分为4层,即核心协议层、电缆替代协议层、电话控制协议层和采纳的其它协议层。
这4种协议中最重要的是核心协议。蓝牙的核心协议包括基带、链路管理、逻辑链路控制和适应协议四部分。其中链路管理(LMP)负责蓝牙组件间连接的建立。逻辑链路控制与适应协议(L2CAP)位于基带协议层上,属于数据链路层,是一个为高层传输和应用层协议屏蔽基带协议的适配协议
1、首先注册权限
android.permission.BLUETOOTH
允许程序连接到已配对的蓝牙设备
android.permission.BLUETOOTH_ADMIN
允许程序发现和配对蓝牙设备
2、获取蓝牙适配器,蓝牙适配器是我们操作蓝牙的主要对象,可以从中获得配对过的蓝牙集合等
获取蓝牙适配器的方法有两种
1)、//首先获取BluetoothManager
BluetoothManager bluetoothManager=(BluetoothManager) context.getService(Context.BLUETOOTH_SERVICE);
//获取BluetoothAdapter
if(bluetoothManager !=null) BluetoothAdapter mBluetoothAdapter =bluetoothManager.getAdapter();
2)、bluetoothAdapter= BluetoothAdapter.getDefaultAdapter(); // 直接获取
3、打开蓝牙
1)、第一种方式会需要用户授权
if(!bluetoothAdapter.isEnabled()){
Intent enableBtIntent =newIntent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent,REQUEST_ENABLE_BT);
}
@Override
protected voidonActivityResult(intrequestCode, intresultCode,Intent data) {
super.onActivityResult(requestCode,resultCode,data);
if(requestCode ==REQUEST_ENABLE_BT) {
if(resultCode == Activity.RESULT_OK) {
Toast.makeText(this,"蓝牙开启成功...",Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(this,"蓝牙开启失败...",Toast.LENGTH_SHORT).show();
}
}
}
2、第二种方式不需要用户授权
mBluetoothAdapter.enable();//开启
4、设置蓝牙广播 蓝牙广播要设置在蓝牙开启之前
// 设置广播信息过滤
IntentFilter filter =newIntentFilter();
filter.addAction(BluetoothDevice.ACTION_FOUND);//每搜索到一个设备就会发送一个该广播
filter.addAction(BluetoothAdapter.ACTION_DISCOVERY_FINISHED);//当全部搜索完后发送该广播
filter.setPriority(Integer.MAX_VALUE);//设置优先级
// 注册蓝牙搜索广播接收者,接收并处理搜索结果
this.registerReceiver(receiver, filter);
// 接收设备的接收器
privateBroadcastReceiverbroadcastReceiver=newBroadcastReceiver() {
@Override
public voidonReceive(Context context,Intent intent) {
String action = intent.getAction();
finalBluetoothDevice device;
// 发现设备
if(BluetoothDevice.ACTION_FOUND.equals(action)) {
// 从Intent中获取设备对象
device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
// 将设备名称和地址放入array adapter,以便在ListView中显示
if(device.getBondState() != BluetoothDevice.BOND_BONDED) {
mDevices.add(device);// 没有配对过的蓝牙设备
}else{
// 配对过得蓝牙设备
}
}else if(BluetoothAdapter.ACTION_DISCOVERY_FINISHED
.equals(action)) {
}//状态改变时
else if(BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) {
device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
switch(device.getBondState()) {
caseBluetoothDevice.BOND_BONDING://正在配对
Log.d("xiaochuan","正在配对......");
break;
caseBluetoothDevice.BOND_BONDED://配对结束
Log.d("xiaochuan","完成配对");
startConnect(device);
break;
caseBluetoothDevice.BOND_NONE://取消配对/未配对
Log.i("xiaochuan","取消配对");
default:
break;
}
}
mAdapter.clearData();
mAdapter.addList(mDevices);
}
};
5、搜索附近蓝牙设备
//如果当前在搜索,就先取消搜索
if(mBluetoothAdapter.isDiscovering()) {
mBluetoothAdapter.cancelDiscovery();
}
//开启搜索
mBluetoothAdapter.startDiscovery();
// 获取原因配对过的蓝牙设备
Set<BluetoothDevice> devices =bluetoothAdapter.getBondedDevices();
if(devices.size() >0) {
for(BluetoothDevice bluetoothDevice : devices) {
mDevices.add(bluetoothDevice);
}
}
6、反注册广播
public voidunregisterReceiver() {
unregisterReceiver(broadcastReceiver);
if(bluetoothAdapter!=null)
bluetoothAdapter.cancelDiscovery();
}
7、配对与绑定
搜索到的设备以列表的形式展示 在点击之后 会与相对应的蓝牙设备进行配对和绑定
@Override
public voidonItemClick(AdapterView adapterView,View view, inti, longl) {
Adapter adapter = adapterView.getAdapter();
BluetoothDevice de = (BluetoothDevice) adapter.getItem(i);
if(de.getBondState() == BluetoothDevice.BOND_BONDED) {
// 已绑定的进入连接
startConnect(de);
}else{
// 未绑定的先配对
try{
Method createBond = BluetoothDevice.class
.getMethod("createBond");
createBond.invoke(de);
// loading.show();
}catch(Exception e) {
e.printStackTrace();
Toast.makeText(MainActivity.this,"无法执行配对",
Toast.LENGTH_SHORT).show();
}
}
}
/**
*
*@parambluetoothDevice
*/
private voidstartConnect(BluetoothDevice bluetoothDevice) {
// 与蓝牙设备连接的业务代码
}
以上就是本文的全部内容,希望对大家的学习有所帮助