我目前正在为Android制作一个Geofencing应用程序,我跟着他们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点,我连接到它。
答案 0 :(得分:8)
关于Google Play GeoFencing API的重要说明。我发现GeoFencing从未智能地从GPS硬件中检索位置。 GeoFence API将观察操作系统提供的最准确位置,或者如果没有最近的位置读数,则会导致从Wifi / Cellular计算位置。 (这很糟糕,因为蜂窝电话不准确,通常无法使用wifi)
因此,为了获得Geofencing API的响应或准确结果,您必须设置Geofences,然后在某个时间间隔内轮询GPS硬件,甚至不会对收到的结果做任何事情,以便在表面下有价值的数据是提供给OS和Geofence API。
这可能是您没有看到任何结果的核心原因。地理围栏事件不会触发,直到操作系统对操作100%有信心。因此,如果位置读数的准确度为500米(使用蜂窝地理定位时不太可能)并且您的围栏半径为50米,那么您将永远无法产生入口事件,并且您必须距离您的围栏点至少约550米,以产生退出事件。
TLDR;在一段时间内轮询GPS硬件而不对结果做任何事情,您将开始获得更准确的地理围栏。
答案 1 :(得分:0)
stealthwang是对的,您不能依赖地理围栏API,因为报告的位置有时会非常严重。您需要执行位置过滤以确保合理的报告。
另外,请注意,超时值只是一个建议。许多平台都会忽略此值,因此如果您的设计需要可靠的定期更新,那么您需要自己实现。
祝你的项目好运。