我正致力于家庭跟踪器应用程序。我需要找到用户的最新位置。为此,我使用时差法。我创建了自定义数据类型列表,其中存储了时差和纬度/经度,但我无法找到最小时差和纬度/经度。
Arraylist包含id,lat,long和time差异。
我的代码:
timediff = SystemDateTime.getTime() - ServerDateTime.getTime();
TimeDifferenceModel timeDiffModel = new TimeDifferenceModel(Id, timediff, lat, lang);
DifferenceData.add(timeDiffModel);
TimeDifferenceModel
public TimeDifferenceModel(String id, long timediff, double lat, double lang)
{
this.id = id;
this.timediff = timediff;
this.lat = lat;
this.lang = lang;
}