我想在丢失 GPS 信号时通知,我发现了这个:
https
:
//stackoverflow.com/a/8322160/1034806 但是如果 onLocationChanged() 没有启动,我如何比较 getTime() 的两个值?
问问题
198 次
1 回答
1
最简单的方法是发送延迟消息:
private static final int MSG_SIGNAL_LOST = 1;
private static final int GPS_SIGNAL_LOST_TIME = 10000; // 10 seconds
private final Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case MSG_SIGNAL_LOST:
handleGpsSignalLost();
break;
}
};
};
private void handleGpsSignalLost() {
// GPS signal lost, handle here
}
private void postDelayedGpsLostCheck() {
mHandler.removeMessages(MSG_SIGNAL_LOST);
mHandler.sendEmptyMessageDelayed(MSG_SIGNAL_LOST, GPS_SIGNAL_LOST_TIME);
}
postDelayedGpsLostCheck()
每次调用方法时只需调用方法onLocationChanged()
。您甚至不需要保存和比较时间。
也别忘了打电话
mHandler.removeMessages(MSG_SIGNAL_LOST);
当你从活动中出去时。
于 2012-05-16T13:25:42.317 回答