我的应用使用LocationListener获取一个位置修复,然后每分钟removeUpdates()
一次(以节省电量)。问题是,如果用户进入内部,那么它将永远寻找信号,燃烧更多电池。我想知道是否有人知道位置管理器中的公共方法,如果在15秒内未获取信号,我可以使用它来删除更新。然后,我会每五分钟检查一次定位,直到用户移回室外。这有意义吗?也许有更好的方法来超时GPS信号采集?我查看了位置管理器的公共方法,但我似乎找不到办法。非常感谢你的帮助! -dom
答案 0 :(得分:8)
虽然GPSmaster的答案已被接受,但我想将链接发布到更优雅,更简单的解决方案,我认为 - https://gist.github.com/777790/86b405debd6e3915bfcd8885c2ee11db2b96e3df。我自己尝试了它并且它起作用=)
如果该链接不起作用,则这是 amay077 的自定义LocationListener
:
/**
* Initialize instance.
*
* @param locaMan the base of LocationManager, can't set null.
* @param timeOutMS timeout elapsed (mili seconds)
* @param timeoutListener if timeout, call onTimeouted method of this.
*/
public TimeoutableLocationListener(LocationManager locaMan, long timeOutMS,
final TimeoutLisener timeoutListener) {
this.locaMan = locaMan;
timerTimeout.schedule(new TimerTask() {
@Override
public void run() {
if (timeoutListener != null) {
timeoutListener.onTimeouted(TimeoutableLocationListener.this);
}
stopLocationUpdateAndTimer();
}
}, timeOutMS);
}
/***
* Location callback.
*
* If override on your concrete class, must call base.onLocation().
*/
@Override
public void onLocationChanged(Location location) {
stopLocationUpdateAndTimer();
}
@Override
public void onProviderDisabled(String s) { }
@Override
public void onProviderEnabled(String s) { }
@Override
public void onStatusChanged(String s, int i, Bundle bundle) { }
private void stopLocationUpdateAndTimer() {
locaMan.removeUpdates(this);
timerTimeout.cancel();
timerTimeout.purge();
timerTimeout = null;
}
public interface TimeoutLisener {
void onTimeouted(LocationListener sender);
}
答案 1 :(得分:4)
所以这就是我最终做的事情。
这是我添加到LocationListener中的注意全局变量timertest和loccounter:
public class MyLocationListener implements LocationListener
{
public void onStart() {
if (timertest==false) {
timertest=true;
serviceHandler = new Handler();
serviceHandler.postDelayed( new timer(),1000L );
}
}
class timer implements Runnable {
public void run() {
++loccounter;
if (runtest==true && loccounter>8) {
dt=200;
runtest=false;
stoplistening();
} else serviceHandler.postDelayed( this, 1000L );
}
}
}
我在请求位置更新之前就启动了计时器。
public void locupdate(int minTime, float minDistance) {
mlocManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
mlocListener = new MyLocationListener();
if (mlocListener != null && mlocManager != null) {
mlocManager.removeUpdates(mlocListener);
}
loccounter=0;
((MyLocationListener) mlocListener).onStart();
runtest=true;
mlocManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
minTime, minDistance, mlocListener);
}
和位置监听器中的最后一个方法:
public void stoplistening() {
mlocManager.removeUpdates(mlocListener);
loccounter=0;
}
希望这有助于某人
答案 2 :(得分:0)
我对这个问题的解决方案有点简单,我不知道这是不是很好。
我们假设我们有一个名为long
的{{1}},用于确定在中止搜索位置之前您想等多少毫秒:
timeToQuit
当然,您必须拥有LocationListener和您自己的LocationListener。 locationManager.requestLocationUpdates中的值来自我的应用程序,因此您可以适应它们。 这段代码对我来说就像一个魅力。我知道我有点晚了,但我无法在任何地方找到这种方法,而且可以帮助某人。 干杯