Android搜索附近的beacon

2024-04-11 10:08
文章标签 android 搜索 beacon 附近

本文主要是介绍Android搜索附近的beacon,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

定义一个service用来搜索beacon

import android.app.Service;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothManager;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Map;public class IbeaconService extends Service {static final char[] hexArray = "0123456789ABCDEF".toCharArray();private final static String Target_UUID = "你的uuid";//过滤搜索的beacon本程序中暂未使用到BluetoothManager bluetoothManager;BluetoothAdapter  mBluetoothAdapter;public IbeaconService() {}@Overridepublic void onCreate() {super.onCreate();bluetoothManager = (BluetoothManager) getApplication().getSystemService(Context.BLUETOOTH_SERVICE);mBluetoothAdapter = bluetoothManager.getAdapter();}@Overridepublic IBinder onBind(Intent intent) {// TODO: Return the communication channel to the service.throw new UnsupportedOperationException("Not yet implemented");}@Overridepublic int onStartCommand(Intent intent, int flags, int startId) {Log.d("tag","ibeacon service startLeScan");if(mBluetoothAdapter!=null){mBluetoothAdapter.startLeScan(mLeScanCallback);}return super.onStartCommand(intent, flags, startId);}@Overridepublic void onDestroy() {super.onDestroy();Log.d("tag", "stopScanningForBeacons");if (mBluetoothAdapter != null) {mBluetoothAdapter.stopLeScan(mLeScanCallback);}}private BluetoothAdapter.LeScanCallback mLeScanCallback = new BluetoothAdapter.LeScanCallback() {@Overridepublic void onLeScan(final BluetoothDevice device, final int rssi,final byte[] scanRecord) {int startByte = 2;boolean patternFound = false;// 寻找ibeaconwhile (startByte <= 5) {if (((int) scanRecord[startByte + 2] & 0xff) == 0x02 && // Identifies an iBeacon((int) scanRecord[startByte + 3] & 0xff) == 0x15) { // Identifies  correct  data  lengthpatternFound = true;break;}startByte++;}// 如果找到了的话if (patternFound) {// 转换为16进制byte[] uuidBytes = new byte[16];System.arraycopy(scanRecord, startByte + 4, uuidBytes, 0, 16);String hexString = bytesToHex(uuidBytes);// ibeacon的UUID值String uuid = hexString.substring(0, 8) + "-"+ hexString.substring(8, 12) + "-"+ hexString.substring(12, 16) + "-"+ hexString.substring(16, 20) + "-"+ hexString.substring(20, 32);// ibeacon的Major值int major = (scanRecord[startByte + 20] & 0xff) * 0x100+ (scanRecord[startByte + 21] & 0xff);// ibeacon的Minor值int minor = (scanRecord[startByte + 22] & 0xff) * 0x100+ (scanRecord[startByte + 23] & 0xff);String ibeaconName = device.getName();String mac = device.getAddress();int txPower = (scanRecord[startByte + 24]);Log.d("BLE", bytesToHex(scanRecord));Log.d("BLE", "Name:" + ibeaconName + "\nMac:" + mac+ " \nUUID:" + uuid + "\nMajor:" + major + "\nMinor:"+ minor + "\nTxPower:" + txPower + "\nrssi:" + rssi);Log.d("BLE", "distance:" + calculateAccuracy(txPower, rssi));DecimalFormat df = new DecimalFormat("#.##");String distance=df.format(calculateAccuracy(txPower, rssi));//将距离保留两位小数String sfsdf = "BLE:" + bytesToHex(scanRecord) + "\n" + "Name:" + ibeaconName + "\nMac:" + mac+ " \nUUID:" + uuid + "\nMajor:" + major + "\nMinor:"+ minor + "\nTxPower:" + txPower + "\nrssi:" + rssi + "\n" + "DOUBLE distance:" + calculateAccuracy(txPower, rssi)+ "distance:" + distance;//    Log.d("tag","sfsdf="+sfsdf);//    Log.d("tag","Name:" + ibeaconName + "\nMac:" + mac +" \nUUID:" + uuid + "\nMajor:" + major + "\nMinor:"+ minor + "\ndistance:" + distance);}}};private static String bytesToHex(byte[] bytes) {char[] hexChars = new char[bytes.length * 2];for (int j = 0; j < bytes.length; j++) {int v = bytes[j] & 0xFF;hexChars[j * 2] = hexArray[v >>> 4];hexChars[j * 2 + 1] = hexArray[v & 0x0F];}return new String(hexChars);}protected static double calculateAccuracy(int txPower, double rssi) {if (rssi == 0) {return -1.0; // if we cannot determine accuracy, return -1.}double ratio = rssi * 1.0 / txPower;if (ratio < 1.0) {return Math.pow(ratio, 10);} else {double accuracy = (0.89976) * Math.pow(ratio, 7.7095) + 0.111;return accuracy;}}
}

在activity中调用

secarchIbeacon();

    /**** 搜索iBeacon*/public void secarchIbeacon(){Log.d("tag", "start secarchIbeacon()");BluetoothManager mBluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);//获取此设备的默认蓝牙适配器。BluetoothAdapter mBluetoothAdapter = mBluetoothManager.getAdapter();if(mBluetoothAdapter!=null) {if (mBluetoothAdapter.isEnabled()) {Log.d("tag", "mBluetoothAdapter is enabled");Intent startIntent = new Intent(MainActivity.this, IbeaconService.class);startService(startIntent);}} else {//开启蓝牙Intent enableBluetooth = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);startActivityForResult(enableBluetooth, 1);}}}


题外话:调用service前可以判断当前service是否正在运行

    //判断service是否正在运行private boolean isServiceRunning(String serviceName) {ActivityManager manager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);for (ActivityManager.RunningServiceInfo runningService : manager.getRunningServices(Integer.MAX_VALUE)) {if (serviceName.equals(runningService.service.getClassName())) {return true;}}return false;}


这篇关于Android搜索附近的beacon的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/893777

相关文章

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

hdu1240、hdu1253(三维搜索题)

1、从后往前输入,(x,y,z); 2、从下往上输入,(y , z, x); 3、从左往右输入,(z,x,y); hdu1240代码如下: #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#inc

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

Android平台播放RTSP流的几种方案探究(VLC VS ExoPlayer VS SmartPlayer)

技术背景 好多开发者需要遴选Android平台RTSP直播播放器的时候,不知道如何选的好,本文针对常用的方案,做个大概的说明: 1. 使用VLC for Android VLC Media Player(VLC多媒体播放器),最初命名为VideoLAN客户端,是VideoLAN品牌产品,是VideoLAN计划的多媒体播放器。它支持众多音频与视频解码器及文件格式,并支持DVD影音光盘,VCD影

hdu 4517 floyd+记忆化搜索

题意: 有n(100)个景点,m(1000)条路,时间限制为t(300),起点s,终点e。 访问每个景点需要时间cost_i,每个景点的访问价值为value_i。 点与点之间行走需要花费的时间为g[ i ] [ j ] 。注意点间可能有多条边。 走到一个点时可以选择访问或者不访问,并且当前点的访问价值应该严格大于前一个访问的点。 现在求,从起点出发,到达终点,在时间限制内,能得到的最大

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态,生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案,则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时,算法停止。 — Choose k successors randomly, biased towards good ones — Close

android-opencv-jni

//------------------start opencv--------------------@Override public void onResume(){ super.onResume(); //通过OpenCV引擎服务加载并初始化OpenCV类库,所谓OpenCV引擎服务即是 //OpenCV_2.4.3.2_Manager_2.4_*.apk程序包,存

hdu4277搜索

给你n个有长度的线段,问如果用上所有的线段来拼1个三角形,最多能拼出多少种不同的? import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;

从状态管理到性能优化:全面解析 Android Compose

文章目录 引言一、Android Compose基本概念1.1 什么是Android Compose?1.2 Compose的优势1.3 如何在项目中使用Compose 二、Compose中的状态管理2.1 状态管理的重要性2.2 Compose中的状态和数据流2.3 使用State和MutableState处理状态2.4 通过ViewModel进行状态管理 三、Compose中的列表和滚动

Android 10.0 mtk平板camera2横屏预览旋转90度横屏拍照图片旋转90度功能实现

1.前言 在10.0的系统rom定制化开发中,在进行一些平板等默认横屏的设备开发的过程中,需要在进入camera2的 时候,默认预览图像也是需要横屏显示的,在上一篇已经实现了横屏预览功能,然后发现横屏预览后,拍照保存的图片 依然是竖屏的,所以说同样需要将图片也保存为横屏图标了,所以就需要看下mtk的camera2的相关横屏保存图片功能, 如何实现实现横屏保存图片功能 如图所示: 2.mtk