我目前正在为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点。
最佳答案
关于Google Play GeoFencing API的重要说明。我发现,GeoFencing从未从GPS硬件智能地检索位置。 GeoFence API将从操作系统中观察到最准确的位置,或者如果没有最新的位置读数,它将导致从Wifi/Cellular计算位置。 (很糟糕,因为蜂窝电话v不准确,并且wifi常常不可用)
因此,要想从Geofencing API中获得响应性或准确的结果,您必须先设置Geofence,然后每隔一段时间轮询GPS硬件,甚至不对接收到的结果做任何事情,以便在表面上将有值(value)的数据提供给操作系统和Geofence API。
这可能是您看不到任何结果的核心。地理围栏事件只有在OS 100%确信该操作后才会触发。因此,如果位置读数的精度为500米(使用蜂窝式地理位置定位时不太可能)并且您的栅栏半径为50m,则您将永远无法产生进入事件,并且至少必须〜距栅栏点550m处产生导出事件。
TLDR;不定期对GPS硬件进行轮询而不进行任何结果,您将开始获得更准确的地理围栏。