这里只是一个有趣的查询,是否有一种方法可以在调用缩放动画序列结束时捕获:
MapController.zoomIn() or MapController.zoomOut();
我知道它确实启动了动画序列以放大/缩小到下一级别,但是我没有已知的方法可以找到/谷歌搜索等,以找出它何时完成该序列。我需要能够在停止时运行更新命令,以便我的地图正确更新。
我发现通过在调用上面的函数后运行update命令,Projection不是来自缩小级别,而是介于其间的某个位置(所以我无法显示我需要的所有数据)。
答案 0 :(得分:1)
我不得不承认我在这里受到了抨击,这是一次黑客行为,但效果很好。我开始需要知道什么时候发生了缩放,一旦我迷上了(并且在一些有趣的调试之后)我发现一些值是“缩放之间”值,所以我需要等到缩放完成后。 / p>
正如Stack Overflow上其他地方所建议的那样,我的缩放侦听器是一个重写的MapView.dispatchDraw,用于检查自上次以来缩放级别是否发生了变化。
除此之外,我添加了一个isResizing方法,该方法检查自getLongitudeSpan值停止更改以来时间戳是否超过100毫秒。效果很好。这是代码:
我的第一个Stack Overflow帖子!喔喔!
public class MapViewWithZoomListener扩展了MapView {
private int oldZoomLevel = -1;
private List<OnClickListener> listeners = new ArrayList<OnClickListener>();
private long resizingLongitudeSpan = getLongitudeSpan();
private long resizingTime = new Date().getTime();
public MapViewWithZoomListener(Context context, String s) {
super(context, s);
}
public MapViewWithZoomListener(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public MapViewWithZoomListener(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
}
public boolean isResizing() {
// done resizing if 100ms has elapsed without a change in getLongitudeSpan
return (new Date().getTime() - resizingTime < 100);
}
public void dispatchDraw(Canvas canvas) {
super.dispatchDraw(canvas);
if (getZoomLevel() != oldZoomLevel) {
new AsyncTask() {
@Override
protected Object doInBackground(Object... objects) {
try {
if (getLongitudeSpan() != resizingLongitudeSpan) {
resizingLongitudeSpan = getLongitudeSpan();
resizingTime = new Date().getTime();
}
Thread.sleep(125); //slightly larger than isMoving threshold
} catch (InterruptedException e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Object o) {
super.onPostExecute(o);
if (!isResizing() && oldZoomLevel != getZoomLevel()) {
oldZoomLevel = getZoomLevel();
invalidate();
for (OnClickListener listener : listeners) {
listener.onClick(null);
}
}
}
}.execute();
}
}
public void addZoomListener(OnClickListener listener) {
listeners.add(listener);
}