If you think the Android project callerid-for-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.integralblue.callerid.geocoder;
//www.java2s.com/** Unfortunately, android.location.Geocoder is final, so we can't extend it.
* This interface is a copy of that of android.location.Geocoder
* @author candrews
*
*/publicinterface Geocoder {
public java.util.List<android.location.Address> getFromLocation(
double latitude, double longitude, int maxResults)
throws java.io.IOException;
public java.util.List<android.location.Address> getFromLocationName(
java.lang.String locationName, int maxResults)
throws java.io.IOException;
public java.util.List<android.location.Address> getFromLocationName(
java.lang.String locationName, int maxResults,
double lowerLeftLatitude, double lowerLeftLongitude,
double upperRightLatitude, double upperRightLongitude)
throws java.io.IOException;
}