android IBeacon 开发(一)搜索IBeacon基站
最近公司在搞IBeacon,因为公司另一个学android的走了,而剩下的人中,只有我接触过java、android,所以只有我来做这个了。
声明,我是一个C#的程序员,java、android都是弱项,只是略有涉及,不懂、错误之处,多多指教。
一开始,我在网上搜IBeacon的资料(使用百度,唉,看来我还是2B程序员啊),最详细的就只有两个,而这两个都是同一个人的,hellogv,播客地址:http://my.csdn.net/hellogv
我找到的两个博文,
http://blog.csdn.net/hellogv/article/details/24267685
http://blog.csdn.net/hellogv/article/details/24661777
因为一开是没有接触过这个东西,所以看不懂啊。只好把代码下载下来,去实际运行一下。
当然,我先下载的是搜索基站的那个,不然没有基站,我上哪里去通信的???!!!
对了,这个BLE是在android 4.3.1版本及以上才能使用哦。
好了,废话少说。
(1)打开蓝牙
这步不多说什么了。
获取BluetoothManager、BluetoothAdapter
1 /** 2 * Initializes a reference to the local Bluetooth adapter. 3 * 4 * @return Return true if the initialization is successful. 5 */ 6 public boolean initialize() 7 { 8 // Use this check to determine whether BLE is supported on the device. Then you can 9 // selectively disable BLE-related features. 10 if (!mContext.getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) 11 { 12 Log.e(TAG, "Unable to initialize Bluetooth."); 13 return false; 14 } 15 // For API level 18 and above, get a reference to BluetoothAdapter through 16 // BluetoothManager. 17 if (mBluetoothManager == null) 18 { 19 mBluetoothManager = (BluetoothManager) mContext.getSystemService(Context.BLUETOOTH_SERVICE); 20 if (mBluetoothManager == null) 21 { 22 Log.e(TAG, "Unable to initialize BluetoothManager."); 23 return false; 24 } 25 } 26 27 mBluetoothAdapter = mBluetoothManager.getAdapter(); 28 if (mBluetoothAdapter == null) 29 { 30 Log.e(TAG, "Unable to obtain a BluetoothAdapter."); 31 return false; 32 } 33 34 return true; 35 } 36
然后打开蓝牙
public boolean OpenBlue() { //开启蓝牙 if (!mBluetoothAdapter.isEnabled()) return mBluetoothAdapter.enable(); else return true; }
因为我写C#习惯了,vs代码样式就是这样的,所以,嘿嘿,能看就行啦哈
(2)扫描
1 private void scanLeDevice(final boolean enable) 2 { 3 if (enable)//enable =true就是说要开始扫描 4 { 5 // Stops scanning after a pre-defined scan period. 6 // 下边的代码是为了在 SCAN_PERIOD 后,停止扫描的 7 // 如果需要不停的扫描,可以注释掉 8 mHandler.postDelayed(new Runnable() 9 { 10 @Override 11 public void run() 12 { 13 mScanning = false; 14 mBluetoothAdapter.stopLeScan(mLeScanCallback); 15 // 这个是重置menu,将 menu中的停止按钮->扫描按钮 16 invalidateOptionsMenu(); 17 } 18 }, SCAN_PERIOD); 19 20 mScanning = true;//此变量指示扫描是否进行 21 mBluetoothAdapter.startLeScan(mLeScanCallback);//这句就是开始扫描了 22 } 23 else 24 { 25 mScanning = false; 26 mBluetoothAdapter.stopLeScan(mLeScanCallback);//这句就是停止扫描 27 } 28 // 这个是重置menu,将 menu中的扫描按钮->停止按钮 29 invalidateOptionsMenu(); 30 }
这里有个变量 mLeScanCallback,这个是什么呢?
1 // Device scan callback. 2 private BluetoothAdapter.LeScanCallback mLeScanCallback = new BluetoothAdapter.LeScanCallback() 3 { 4 @Override 5 public void onLeScan(final BluetoothDevice device, int rssi, byte[] scanRecord) 6 { 7 iBeacon iBeacon = fromScanData(device, rssi, scanRecord);20 } 21 }; 22
通过探索呢,这个东西就是一个回调函数,当蓝牙接收到某广播时,就会调用 mLeScanCallback.onLeScan()函数。device当然就是广播的设备了,rssi是信号强度,scanRecord是广播的信息。
然后通过解析scanRecord就可以知道设备的详情了。formScanData我就不多说了,在大神的源码里有。
获取到IBeacon以后,你就可以把他放到列表里,该怎么显示就是你的问题了。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器