Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用我的应用程序中GpsStatus的getSatellites()函数每 5 秒对数据进行一次采样。我似乎不明白如何初始化GpsStatus。有人可以指出我正确的方向。谢谢。
GpsStatus
getSatellites()
您通过侦听器获得 GpsStatus
mlocationManager.addGpsStatusListener(your listener);
或致电getGpsStatus (GpsStatus status)
getGpsStatus (GpsStatus status)
检索有关 GPS 引擎当前状态的信息。这只应从 onGpsStatusChanged(int) 回调中调用,以确保以原子方式复制数据。调用者可以传入一个 GpsStatus 对象来设置最新的状态信息,或者传递 null 来创建一个新的 GpsStatus 对象。