0

这是我的项目,您可以在其中单击列表视图中的医院名称,并将在下一个活动中显示详细信息,详细信息下方是地图视图。我的项目崩溃了,我从 logcat 收到了这个错误

11-30 18:22:50.085: E/AndroidRuntime(13114): FATAL EXCEPTION: main
11-30 18:22:50.085: E/AndroidRuntime(13114): java.lang.NullPointerException
11-30 18:22:50.085: E/AndroidRuntime(13114):    at com.dr.droid.lee.HospResult$GeocoderTask.onPostExecute(HospResult.java:130)
11-30 18:22:50.085: E/AndroidRuntime(13114):    at com.dr.droid.lee.HospResult$GeocoderTask.onPostExecute(HospResult.java:1)
11-30 18:22:50.085: E/AndroidRuntime(13114):    at android.os.AsyncTask.finish(AsyncTask.java)
11-30 18:22:50.085: E/AndroidRuntime(13114):    at android.os.AsyncTask.access$600(AsyncTask.java)
11-30 18:22:50.085: E/AndroidRuntime(13114):    at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java)

这是我班级的代码

public class HospResult extends MapActivity {

    String hcity;
    String hregion;
    String hadd;
    String hname;
    String hcon;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        Typeface type = Typeface.createFromAsset(this.getAssets(),"MyriadPro-Bold.ttf");
        setContentView(R.layout.map);
        TextView hosname =  (TextView) findViewById(R.id.tvName);
        TextView hosreg =  (TextView) findViewById(R.id.tvRegion);
        TextView hosadd =  (TextView) findViewById(R.id.tvAddress);
        TextView hoscon =  (TextView) findViewById(R.id.tvContact);
        TextView hoscity =  (TextView) findViewById(R.id.tvCity);
        Bundle receive = getIntent().getExtras();
        hcity = receive.getString("city");
        hregion = receive.getString("region");
        hadd = receive.getString("address");
        hname = receive.getString("name");
        hcon = receive.getString("contact");
        hosname.setText(hname);
        hosreg.setText(hregion);
        hoscity.setText(hcity);
        hosadd.setText(hcon);
        hoscon.setText(hadd);
        hosname.setTypeface(type);
        hosreg.setTypeface(type);
        hosadd.setTypeface(type);
        hoscity.setTypeface(type);
        hoscon.setTypeface(type);
        //MapView mv =  (MapView) findViewById(R.id.mv1);
        //MapController mp = mv.getController();
        //mp.setZoom(15);
        String loc = hosname.getText().toString();
        //Toast.makeText(this, loc, Toast.LENGTH_SHORT).show();

        if(loc!=null && !loc.equals("")){
            new GeocoderTask().execute(loc);
        }


    }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }

    // An AsyncTask class for accessing the GeoCoding Web Service
        private class GeocoderTask extends AsyncTask<String, Void, List<Address>>{

            @Override
            protected List<Address> doInBackground(String... locationName) {
                // Creating an instance of Geocoder class
                Geocoder geocoder = new Geocoder(getBaseContext());
                List<Address> addresses = null;

                try {
                    // Getting a maximum of 3 Address that matches the input text
                    addresses = geocoder.getFromLocationName(locationName[0], 1);
                } catch (IOException e) {
                    e.printStackTrace();
                }           
                return addresses;
            }


            @Override
            protected void onPostExecute(List<Address> addresses) {

                // Getting Reference to MapView of the layout activity_main
                MapView mapView = (MapView) findViewById(R.id.mv1);

                // Setting ZoomControls
                mapView.setBuiltInZoomControls(true);

                // Getting MapController for the MapView
                MapController mc = mapView.getController();
                mc.setZoom(18);

                // Getting Drawable object corresponding to a resource image
                Drawable drawable = getResources().getDrawable(R.drawable.marker);


                // Getting Overlays of the map
                List<Overlay> overlays = mapView.getOverlays();

                // Creating an ItemizedOverlay
                LocationOverlay locationOverlay = new LocationOverlay(drawable,getBaseContext());

                // Clearing the overlays
                overlays.clear();

                if(addresses==null || addresses.size()==0){
                    Toast.makeText(getBaseContext(), "No Location found", Toast.LENGTH_SHORT).show();

                    // Redraws the map to clear the overlays
                    mapView.invalidate();
                }

                // Adding Markers on Google Map for each matching address
                for(int i=0;i<addresses.size();i++){                

                    Address address = (Address) addresses.get(i);

                    // Creating an instance of GeoPoint, to display in Google Map
                    GeoPoint p = new GeoPoint(
                                              (int)(address.getLatitude()*1E6),
                                              (int)(address.getLongitude()*1E6)
                                             );

                    String addressText = String.format("%s, %s",
                            address.getMaxAddressLineIndex() > 0 ? address.getAddressLine(0) : "",
                            address.getCountryName());


                    // Creating an OverlayItem to mark the point
                    OverlayItem overlayItem = new OverlayItem(p, "Location",addressText);

                    // Adding the OverlayItem in the LocationOverlay
                    locationOverlay.addOverlay(overlayItem);

                    // Adding locationOverlay to the overlay
                    overlays.add(locationOverlay);

                    // Locate the first location
                    if(i==0)
                        mc.animateTo(p);                    
                }

                // Redraws the map
                mapView.invalidate();

            }       
        }

}

130号线从这里开始

for(int i=0;i<addresses.size();i++){

在添加此类似搜索功能之前,我的项目正在显示地图并运行良好,但是在添加我从教程中获得的类似搜索功能后,它崩溃了。知道为什么我的项目在加载地图时崩溃了吗?我该怎么做才能解决这个问题?

4

2 回答 2

1

尝试初始化您的列表List<Address> addresses = new List<Address>();

正如@Carnal 在这里非常正确地说的那样,如果您确定通过方法获取列表,则不必初始化列表,geocoder.getFromLocationName然后您可以使用List<Address> addresses=null,或者您可以检查列表的大小并根据在循环中使用它们时使用它们。

于 2012-11-30T10:47:30.873 回答
0

您不需要初始化,因为返回 a List<Address> addresses = new List<Address>();,您仍然可以拥有。问题似乎是您在执行循环之前没有检查您的地址列表是否为空。这似乎会使您的程序崩溃。List<Address> addresses = nullgeocoder.getFromLocationNameList<Address>

做这个检查:

if(addresses != null && addresses.size() > 0){
    for(int i=0;i<addresses.size();i++){
        // rest of your code..
    }
}
于 2012-11-30T11:09:33.617 回答