Yug*_*esh 4 android android-geofence
我根据 Android 文档的指导原则使用地理围栏代码。在索尼 XA1、三星 J7 Nxt、小米 5A、Poco f1、OnePlus 6 等真实设备中进行测试。地理围栏进入和退出在索尼 XA1、三星 J7 Nxt 中正常工作。
小米和OnePlus手机的问题。
地理围栏代码:
private GeofencingClient mGeofencingClient;
private ArrayList<Geofence> mGeofenceList;
private PendingIntent mGeofencePendingIntent;
mGeofenceList = new ArrayList<>();
mGeofencingClient = LocationServices.getGeofencingClient(getApplicationContext());
//Latitude & Longitude Comes from Array to Add
mGeofenceList.add(new Geofence.Builder().setRequestId(String.valueOf(mall.mallId)).setCircularRegion(
mall.latitude,
mall.longitude,
mall.geofencingMeters)
.setExpirationDuration(Geofence.NEVER_EXPIRE)
.setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER | Geofence.GEOFENCE_TRANSITION_EXIT)
.build());
private GeofencingRequest getGeofencingRequest() {
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER);
builder.addGeofences(mGeofenceList);
return builder.build();
}
private PendingIntent getGeofencePendingIntent() {
if (mGeofencePendingIntent != null) {
return mGeofencePendingIntent;
}
Intent intent = new Intent(this, GeofenceBroadcastReceiver.class);
mGeofencePendingIntent = PendingIntent.getBroadcast(this, FENCING_REQUEST_CODE, intent, PendingIntent.FLAG_UPDATE_CURRENT);
return mGeofencePendingIntent;
}
Run Code Online (Sandbox Code Playgroud)
广播接收器
public class GeofenceBroadcastReceiver extends BroadcastReceiver {
/**
* Receives incoming intents.
*
* @param context the application context.
* @param intent sent by Location Services. This Intent is provided to Location
* Services (inside a PendingIntent) when addGeofences() is called.
*/
@Override
public void onReceive(Context context, Intent intent) {
// Enqueues a JobIntentService passing the context and intent as parameters
StoreFencing.enqueueWork(context, intent);
}
}
}
Run Code Online (Sandbox Code Playgroud)
击剑服务:
public class StoreFencing extends JobIntentService {
private static final int JOB_ID = 502;
List<Geofence> triggeringGeofences;
public static void enqueueWork(Context context, Intent intent) {
enqueueWork(context, StoreFencing.class, JOB_ID, intent);
}
@Override
protected void onHandleWork(@NonNull Intent intent) {
GeofencingEvent geofencingEvent = GeofencingEvent.fromIntent(intent);
if (geofencingEvent.hasError()) {
return;
}
int geofenceTransition = geofencingEvent.getGeofenceTransition();
if (geofenceTransition == Geofence.GEOFENCE_TRANSITION_ENTER) {
triggeringGeofences = geofencingEvent.getTriggeringGeofences();
getGeofenceEnterTransitionDetails(triggeringGeofences);
}
if (geofenceTransition == Geofence.GEOFENCE_TRANSITION_EXIT) {
triggeringGeofences = geofencingEvent.getTriggeringGeofences();
getGeofenceExitTransitionDetails(triggeringGeofences);
}
}
}
Run Code Online (Sandbox Code Playgroud)
代码或设备是否有问题。通知用户在这些手机中启用其他设置。帮助解决这个问题。
| 归档时间: |
|
| 查看次数: |
2062 次 |
| 最近记录: |