Hello buddies,
Hi am developing an app on Smartpad (1.5) ,you can call it as Android tablet PC too....I have created a map activity where i am using
Geocoder gc=new Geocoder(this, Locale.getDefault());
List foundAdresses = gc.getFromLocationName(address,5);
to return a list of adress near by location passed to getFromLocationName.
This works fine on Emulator,but not on device.getFromLocationName() does't return anything at all.
Does device should have something which supports Geocoding?
What is the alternative to Geocoder to get a list of address for the given location ?
Please help me out? Thanks in advance......