getFromLocationName() alsways throws a NullPointerException in the Android 2.2 emulator but it's working fine in the Android 1.6 emulator.

This is my code snippet:

Geocoder geo = new Geocoder(GeocoderAppActivity.this, Locale.getDefault());     

try {       
    List<Address> add = geo.getFromLocationName("Tagore Road,Rajkot", 1);
    while (add.size() == 0) {
        Log.e("Girish", "in while");
        add = geo.getFromLocationName("Tagore Road,Rajkot", 1);
    }
}

What is wrong?

link|improve this question
feedback

3 Answers

In the emulator, are you using the regular Android 2.2, or the Google Apis [Android 2.2] version?

If you use the regular Android 2.2 one, it won't work. As far as I know it does not have the functionality to fulfill your actions. Open your SDK manager and download the Google Apis [Android 2.2] and create an AVD with that. Then try again, it should work.

link|improve this answer
ya i know that i am using google api 2.2 and tested in google api 2.2. – Chandu Dec 14 '11 at 14:02
feedback

It's a known bug which they never fixed see service not available I think you will find that it works in the the API level 7 emulator.

link|improve this answer
feedback

Yes this is a Bug but I think it shall run on device.

link|improve this answer
have u tested this in android 2.2 real device? – Chandu Dec 14 '11 at 14:04
Check This stackoverflow.com/questions/4761052/… – AB1209 Dec 15 '11 at 4:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.