您好我正在创建一个项目。它是关于跟踪司机。司机必须每隔5秒将其位置发送到Firebase。我的问题是乘客每隔5秒钟如何检索司机的位置。
答案 0 :(得分:1)
简而言之:
LocationRequest locationrequest = LocationRequest.create();
locationrequest.setInterval(5000); // 5 seconds
LocationClient locationclient = new LocationClient(this, this, this);
locationclient.requestLocationUpdates(locationrequest, this);
https://developer.android.com/training/location/index.html
在此链接中,建议您使用新的Google Play services location APIs
。但他们有同样的想法。