赞
踩
说明:
ibeacon设备会主动发射蓝牙信号,当手机打开蓝牙靠近ibeacon设备时,就会收到设备发送的蓝牙信号,这时只需要根据ibeacon设备的uuid、major、minor、mac这四个值,就可以确认是哪一台ibeacon设备,然后调用服务端考勤接口(ibeacon设备只为了确认手机在考勤机边上,不需要发送考勤数据到ibeacon设备上),即可实现蓝牙考勤。
一、添加静态权限(在AndroidManifest.xml文件中添加,需要蓝牙和定位权限)
二、检测与开启蓝牙、GPS
1.是否支持蓝牙:
if (!context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) {
ToastUtils.show("本机不支持蓝牙功能, 无法蓝牙打卡");
((Activity) context).finish();
return false;
}
final BluetoothManager bm = (BluetoothManager) context.getSystemService(Context.BLUETOOTH_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2) {
mBleAdapter = bm.getAdapter(); //mBleAdapter为全局变量,为BluetoothAdapter对象
}
if (bleAdapter == null) {
Toa
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。