0

2 つ作成しましAsyncTaskたが、ジオポイントである最初の非同期タスクの出力を 2 番目の非同期タスクへの入力として渡すと、null になります。これが私のコードです。

String input=EnterYourSearch.getText().toString();
Geopoint point_to_be_send;
     get_location.execute(input);       
     getplaces.execute(point_to_be_send);
        public class Getlocation extends AsyncTask<String, String, Geopoint> 
        { 
          @Override
          protected Geopoint doInBackground(String... params) {
            jsonobject=JsonRequest.getLocationInfo(params[0]);   
            point=JsonRequest.getLatLong(jsonobject);     
            return point;    
          }
          @Override
          protected void onPostExecute( Geopoint point) {
            if(point.lat !=0)
            {
              //check=false;
              point_to_be_send=point;
            }
          }
        }
    public class Getplaces extends AsyncTask<Geopoint, String, Boolean>
        {



            @Override
            protected Boolean doInBackground(Geopoint... params) {
                // TODO Auto-generated method stub
                 googleplaces=new Googleplaces();



                       try {
                        googleplaces.search(params[0].lat, params[0].lon, 1000, null);
                    } catch (Exception e) {
                        // TODO Auto-generated catch block
                        Log.d("Error", e.toString());
                        e.printStackTrace();
                    }
                    return true;

                    }

そして、これは Geopoint クラスです

public class Geopoint {

    public double lat;
    public double lon;
    public Geopoint(double i, double j) {
        // TODO Auto-generated constructor stub
        lat=i;
        lon=j;
    }
}
4

1 に答える 1

0

初期化に失敗しましたpoint_to_be_send
このようなものを追加してください

Geopoint point_to_be_send = new Geopoint(myDoubleI, myDoubleJ);

point_to_be_send is nullそのため、例外が発生しています。

于 2013-01-08T01:30:14.740 に答える