有没有办法拦截Android M Bluetooh关闭扫描数据?

时间:2015-11-04 10:58:08

标签: android bluetooth android-6.0-marshmallow eddystone beacon

我刚刚读到Android M即使在蓝牙关闭时也执行蓝牙扫描

enter image description here

(这是第一个问题:它只是BLE扫描吗?)。

所以我认为拦截扫描数据以发现信标真是太棒了。

我试图在Manfest中为 android.bluetooth.device.action.FOUND 注册一个广播接收器。

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver
        android:name=".BluetoothReceiver"
        android:enabled="true"
        android:exported="true" >
        <intent-filter>
            <action android:name="android.bluetooth.device.action.FOUND" />
        </intent-filter>
    </receiver>
</application>

不幸的是,广播只出现在Android 5.1及更少但不是M。

有没有办法拦截scnanning数据以节省电池而不运行手动执行扫描的服务,就像Radius Network的Android Beacon Library那样?

0 个答案:

没有答案