My Android and Java skills aren't so hot...
In the developer.android.com page for Geocoder, it says :
The Geocoder query methods will return an empty list if there no backend service in the platform. Use the isPresent() method to determine whether a Geocoder implementation exists.
However, when I try to call, for example :
if (Geocoder.isPresent()) {...
Eclipse tells me
The method isPresent() is undefined for the type Geocoder
How can I "use the isPresent() method"?