Created
March 13, 2013 06:43
-
-
Save lseongjoo/5149834 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
public void onTextChanged(CharSequence s, int start, int before, int count){ | |
if(start >0 && before == 1 && count == 1){ | |
if(geocoderTask != null){ | |
gecoderTask.cancel(true); | |
} | |
geocodeTask = new GeocodeTask(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment