但不是在模拟器2

但不是在模拟器2

本文介绍了地理codeR工作在1.6,但不是在模拟器2.2的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

getFromLocationName() alsways在Android 2.2模拟器抛出一个 NullPointerException异常,但它在Android 1.6模拟器工作正常

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

这是我的code片断:

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);
    }
}

什么是错的?

推荐答案

是的,这是一个错误,但我认为它应在设备上运行。

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

这篇关于地理codeR工作在1.6,但不是在模拟器2.2的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 23:51