未触发 Android 地理围栏广播接收器

Posted

技术标签:

【中文标题】未触发 Android 地理围栏广播接收器【英文标题】:Android Geofencing BroadcastReceiver not Triggered 【发布时间】:2014-07-20 10:43:28 【问题描述】:

我目前正在为 android 制作地理围栏应用,我关注了他们的 tutorial,但我似乎无法让 BroadcastReceiver 正确触发。

onAddGeofencesResult 被调用,但 BroadcastReceiver 从未被调用。为什么?我有它,所以如果一个人在地理围栏中超过 5 毫秒,以及退出或进入地理围栏,它应该发送广播。我根据我办公室附近的坐标制作了地理围栏,但在穿过它们(或站在其中)时没有得到任何结果。

ReceiveTransitionsBroadcastReceiver.java:

import com.parse.ParseObject;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;


/**
 * This class receives geofence transition events from Location Services, in the
 * form of an Intent containing the transition type and geofence id(s) that triggered
 * the event.
 */
public class ReceiveTransitionsBroadcastReceiver extends BroadcastReceiver 

    @Override
    public void onReceive(Context arg0, Intent arg1) 

        System.out.println("Hello");

        ParseObject gameScore = new ParseObject("EventTest");
        gameScore.put("Student", "Josh");
        gameScore.put("Entered", true);
        gameScore.put("Class", "AndroidTest");
        gameScore.saveInBackground();

    

清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.spotter"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="16"
        android:targetSdkVersion="19" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.spotter.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <receiver android:name="com.example.spotter.ReceiveTransitionsBroadcastReceiver" android:exported="false"/>
        <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
    </application>
</manifest>

我设置地理围栏的 MainActivity:

@Override
public void onConnected(Bundle bundle) 
    System.out.println("Connected to LocationServices");
    Geofence.Builder builder = new Geofence.Builder();
    builder.setCircularRegion(41.909858, -87.649038, 100.0f)
        .setExpirationDuration(Geofence.NEVER_EXPIRE)
        .setRequestId("1")
        .setLoiteringDelay(5)
        .setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT | Geofence.GEOFENCE_TRANSITION_DWELL);
    Geofence fence1 = builder.build();
    builder.setCircularRegion(41.910359, -87.651444, 100.0f)
        .setExpirationDuration(Geofence.NEVER_EXPIRE)
        .setRequestId("2")
        .setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT);
    Geofence fence2 = builder.build();



    Intent intent = new Intent(this, ReceiveTransitionsBroadcastReceiver.class);
    PendingIntent pi = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

    locationClient.addGeofences(Arrays.asList(fence1,fence2), pi, this);

感谢您查看此内容,感谢您的帮助。

编辑:地理围栏的半径为 1000 米。我开车大约一英里远,但什么也没有,所以我认为这不是问题的准确性。请注意,设备未激活,所以我只使用 wifi,但我连接的每个地理围栏周围有几十个 wifi 点。

【问题讨论】:

你有没有让这个工作正常? 【参考方案1】:

关于 Google Play GeoFencing API 的重要说明。我发现 GeoFencing 从不智能地从 GPS 硬件中检索位置。 GeoFence API 将观察操作系统提供的最准确位置,或者如果没有最近的位置读数可用,它将导致从 Wifi / Cellular 计算位置。 (这很糟糕,因为蜂窝网络不准确,而且 wifi 经常不可用)

因此,要从地理围栏 API 中获得响应性或准确的结果,您必须设置地理围栏,然后每隔一段时间轮询 GPS 硬件,甚至不对收到的结果做任何事情,以便在表面下有价值的数据是提供给操作系统和地理围栏 API。

这可能是您没有看到任何结果的核心原因。在操作系统对操作有 100% 的把握之前,地理围栏事件不会触发。因此,如果位置读数的精度为 500 米(在使用蜂窝地理定位时并非不可能)并且您的围栏半径为 50m,那么您将永远无法产生入口事件,并且您必须至少 ~距离您的围栏点 550m 以产生退出事件。

TLDR;每隔一段时间轮询 GPS 硬件而不对结果做任何事情,您将开始获得更准确的地理围栏。

【讨论】:

在不严重影响电池寿命的情况下轮询 GPS 硬件的最佳方法是什么? "每隔一段时间轮询 GPS 硬件,甚至没有对结果做任何事情" ...然后你的应用程序会烧毁电池,用户想知道为什么他们的手机在不使用时会很热它...他们查看电池部分,发现您的应用程序是最严重的违规者,并被列为最高电池使用量...然后他们给您 1 星评级并卸载您的应用程序。所以是的,问题解决了......我猜。 我的应用程序部署在一个精度至关重要且功耗微不足道的环境中,因为设备已插入。所以是的,我的问题得到了解决。这不是我的错,除非你这样做,否则 Android GPS 的准确性令人难以忍受。您必须针对自己的限制进行开发。如果您真的致力于准确性和电池寿命,那么当您距离地理围栏仍然很远时,增加您的间隔并在间隔计时中实施一些退避逻辑。【参考方案2】:

stealthwang 是对的,您不能依赖地理围栏 API,因为报告的位置有时会非常偏离。您将需要执行位置过滤以确保合理的报告。

另外,请注意超时值只是一个建议。许多平台只是忽略了这个值,所以如果您的设计需要可靠的定期更新,那么您需要自己实现。

祝你的项目好运。

【讨论】:

以上是关于未触发 Android 地理围栏广播接收器的主要内容,如果未能解决你的问题,请参考以下文章

从Intent服务发送短信 - 无法接收广播以检查是否发送了短信

地理围栏 - 触发“GEOFENCE_NOT_AVAILABLE”的问题

广播接收器在 Android 8 的前台服务中不起作用

实施地理围栏 - 在应用程序未运行时接收地理围栏转换事件

在后台广播的工作地理围栏示例

背景中的地理围栏