Issue
Are there some kind events for animateTo() is finished in android's MapView?
I don't mean manual scrolls, I mean animateTo()-calls from my code or animateTo()-calls causing by changing myLocation if myLocation is enabled?
Thank you
Solution
Yes, there is an animateTo that takes a Runnable parameter. You can use this in this manner:
mapController.animateTo(geoPoint,
new Runnable() {
@Override
public void run() {
// your code
}
});
Answered By - skynet
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.