更新,请参见下文。

如何将类LocationData和ArrayList listOfObjects返回到onPostExecute()?我想在我的UI中使用它,现在它在AsyncTask的后台。我也想添加标记:

mMap.addMarker(new MarkerOptions()
    .position(new LatLng(lati, longi))
    .title(name));


这样我就可以在每次循环后将每个新位置添加到地图上。

返回LocationData类后,是否将以上内容放置在onPostExecute中?

    try {

        String apples = endpoint.listContactInfo().execute().toString();

        JSONObject jObject = new JSONObject(apples);

        JSONArray jsonArr = jObject.getJSONArray("items");

        for (int i = 0; i < jsonArr.length(); i++) {
            JSONObject jsonObj1 = jsonArr.getJSONObject(i);

            // Storing each json item in variable
            String id = jsonObj1.getString(TAG_ID);
            String nameFirst1 = jsonObj1.getString(TAG_FIRSTNAME);
            String nameLast1 = jsonObj1.getString(TAG_LASTNAME);
            String emailAddress1 = jsonObj1.getString(TAG_EMAIL);
            String streetAddress1 = jsonObj1.getString(TAG_ADDRESS);
            String phone1 = jsonObj1.getString(TAG_PHONE);

            // test to see if made it to string
            Log.d("YOUR_TAG", "First Name: " + nameFirst1 + " Last Name: "
                    + nameLast1);

            address = coder.getFromLocationName(streetAddress1, 5);

            Address location1 = address.get(0);

            // SET LAT LNG VALUES FOR MARKER POINT

            lati = location1.getLatitude();
            longi = location1.getLongitude();

            Log.d("Location", "Location:" + lati + " " + longi);

            class LocationData {
                private double lat;
                private double longitude;
                private String name;

                public LocationData(double lat, double longitude,
                        String name) {
                    this.lat = lat;
                    this.longitude = longitude;
                    this.name = name;
                }

                public void setLat(double lat) {
                    this.lat = lat;
                }

                public void setLongitude(double longitude) {
                    this.longitude = longitude;
                }

                public double getLat() {
                    return lat;
                }

                public double getLongitude() {
                    return longitude;
                }

                public void setName(String name) {
                    this.name = name;
                }

                public String getName() {
                    return name;
                }

            }

            ArrayList<LocationData> listOfObjects = new ArrayList<LocationData>();

            listOfObjects.add(new LocationData(lati, longi, nameFirst1));

        }

    } catch (IOException e) {
        e.printStackTrace();
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return (long) 0;

}

// WHAT DO I PUT HERE TO RETURN LocationData Class here
// ADD MARKER TO MAP UI
protected void onPostExecute() {

    // mMap.addMarker(new MarkerOptions()
    // .position(new LatLng(lati, longi))
    // .title("Hello world"));


这看似基本,但我创建了此方法:
     公共ArrayList getLocationData(){

                                 ArrayList<LocationData> listOfObjects = new ArrayList<LocationData>();

                                 listOfObjects.add(new LocationData(lati, longi, nameFirst1));

                                 return listOfObjects;
                             }


在我的LocationData类中。然后我放置了LocationData.getLocationData();与onPostExecute和我得到的位置数据无法解析。目前的代码看起来像这样:

 try {

    String apples = endpoint.listContactInfo().execute().toString();

    JSONObject jObject = new JSONObject(apples);

    JSONArray jsonArr = jObject.getJSONArray("items");

     for(int i =0 ; i<jsonArr.length() ;i++ ){
         JSONObject jsonObj1 = jsonArr.getJSONObject(i);


                    // Storing each json item in variable
                    String id = jsonObj1.getString(TAG_ID);
                    final String nameFirst1 = jsonObj1.getString(TAG_FIRSTNAME);
                    String nameLast1 = jsonObj1.getString(TAG_LASTNAME);
                    String emailAddress1 = jsonObj1.getString(TAG_EMAIL);
                    String streetAddress1 = jsonObj1.getString(TAG_ADDRESS);
                    String phone1 = jsonObj1.getString(TAG_PHONE);

                    //test to see if made it to string
                    Log.d("YOUR_TAG", "First Name: " + nameFirst1 + " Last Name: " + nameLast1);

                       address = coder.getFromLocationName(streetAddress1,5);

                        Address location1 = address.get(0);

                        // SET LAT LNG VALUES FOR MARKER POINT

                     lati = location1.getLatitude();
                         longi = location1.getLongitude();

                         Log.d("Location", "Location:" + lati + " " +  longi);


                       class LocationData {
                             private double lat;
                             private double longitude;
                             private String name;

                             public LocationData(double lat, double longitude, String name) {
                                 this.lat = lat;
                                 this.longitude = longitude;
                                 this.name = name;
                             }

                             public void setLat(double lat) {
                                 this.lat = lat;
                             }

                             public void setLongitude(double longitude) {
                                 this.longitude = longitude;
                             }

                             public double getLat() {
                                 return lat;
                             }

                             public double getLongitude() {
                                 return longitude;
                             }

                             public void setName(String name) {
                                   this.name = name;
                                }

                             public String getName() {
                                 return name;



                                }

                             public ArrayList<LocationData> getLocationData() {

                                 ArrayList<LocationData> listOfObjects = new ArrayList<LocationData>();

                                 listOfObjects.add(new LocationData(lati, longi, nameFirst1));

                                 return listOfObjects;
                             }

                             }

     }

    } catch (IOException e) {
    e.printStackTrace();
  } catch (JSONException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
      return (long) 0;


    }
    //WHAT DO I PUT HERE TO RETURN LocationData Class here
         // ADD MARKER TO MAP UI
    protected void onPostExecute(Long result ) {

                  //CANT BE RESOLVED
        LocationData.getLocationData();

        //mMap.addMarker(new MarkerOptions()
        //.position(new LatLng(lati, longi))
        // .title("Hello world"));


这是基于@Sustain建议的更改。我现在似乎没有任何地图标记。有人看到吗?

public class FinderActivity extends Activity implements LocationListener  {


GoogleMap mMap;
Location myLocation;
EditText length;
String lengthString;
LocationManager locationmanager;
double lati;
double longi;
String nameFirst1;
//Spinner s;

   List<Address> address;
   Geocoder coder = new Geocoder(this);
private static final String TAG_ID = "id";
private static final String TAG_FIRSTNAME = "nameFirst";
private static final String TAG_LASTNAME = "nameLast";
private static final String TAG_EMAIL = "emailAddress";
private static final String TAG_ADDRESS = "streetAddress";
private static final String TAG_STATE = "state";

private static final String TAG_PHONE = "phone";
JSONArray contacts = null;


private static class LocationData {
     private double lat;
     private double longitude;
     private String name;

     public LocationData(double lat, double longitude, String name) {
         this.lat = lat;
         this.longitude = longitude;
         this.name = name;
     }

     public void setLat(double lat) {
         this.lat = lat;
     }

     public void setLongitude(double longitude) {
         this.longitude = longitude;
     }

     public double getLat() {
         return lat;
     }

     public double getLongitude() {
         return longitude;
     }

     public void setName(String name) {
           this.name = name;
        }

     public String getName() {
         return name;

        }

     }

@SuppressLint("NewApi")
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.maps);
    mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
    if (mMap!= null) {

        mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);


        mMap.setMyLocationEnabled(true);
        mMap.animateCamera(CameraUpdateFactory.zoomBy(17));

        }

    LocationManager locationmanager = (LocationManager) getSystemService(LOCATION_SERVICE);
    Criteria cr = new Criteria();
    String provider = locationmanager.getBestProvider(cr, true);

    Location location = locationmanager.getLastKnownLocation(provider);

    locationmanager.requestLocationUpdates(provider, 20, 0, (LocationListener) this);

    mMap.moveCamera(CameraUpdateFactory.newLatLng((new LatLng(location.getLatitude(), location.getLongitude()))));


    new EndpointsTask().execute(getApplicationContext());

}

public class EndpointsTask extends AsyncTask<Context, LocationData, Long> {

    private List<LocationData> locationList = new ArrayList<LocationData>();

    public Long doInBackground(Context... contexts) {

      Contactinfoendpoint.Builder endpointBuilder = new Contactinfoendpoint.Builder(
          AndroidHttp.newCompatibleTransport(),
          new JacksonFactory(),
          new HttpRequestInitializer() {
          public void initialize(HttpRequest httpRequest) { }
          });
  Contactinfoendpoint endpoint = CloudEndpointUtils.updateBuilder(
  endpointBuilder).build();

  try {

    String apples = endpoint.listContactInfo().execute().toString();

    JSONObject jObject = new JSONObject(apples);

    JSONArray jsonArr = jObject.getJSONArray("items");

     for(int i =0 ; i<jsonArr.length() ;i++ ){
         JSONObject jsonObj1 = jsonArr.getJSONObject(i);


                    // Storing each json item in variable
                    String id = jsonObj1.getString(TAG_ID);
                    String nameFirst1 = jsonObj1.getString(TAG_FIRSTNAME);
                    String nameLast1 = jsonObj1.getString(TAG_LASTNAME);
                    String emailAddress1 = jsonObj1.getString(TAG_EMAIL);
                    String streetAddress1 = jsonObj1.getString(TAG_ADDRESS);
                    String phone1 = jsonObj1.getString(TAG_PHONE);

                    //test to see if made it to string
                    Log.d("YOUR_TAG", "First Name: " + nameFirst1 + " Last Name: " + nameLast1);

                       address = coder.getFromLocationName(streetAddress1,5);

                        Address location1 = address.get(0);

                        // SET LAT LNG VALUES FOR MARKER POINT

                     lati = location1.getLatitude();
                         longi = location1.getLongitude();

                         Log.d("Location", "Location:" + lati + " " +  longi);

                         LocationData data = new LocationData(lati, longi, nameFirst1);
                         locationList.add(data);
                         publishProgress(data);

     }

    } catch (IOException e) {
    e.printStackTrace();
  } catch (JSONException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
      return (long) 0;

    }

    protected void onProgressUpdate(LocationData data) {
        // Add Marker on Map using data. This is called by
        // publishProgress(LocationData) on the UI Thread.
        mMap.addMarker(new MarkerOptions()
        .position(new LatLng(lati, longi))
         .title(nameFirst1));

        Log.d("bananas", lati + longi + nameFirst1);
    }

    //WHAT DO I PUT HERE TO RETURN LocationData Class here
         // ADD MARKER TO MAP UI
    protected void onPostExecute() {

    }

    }

最佳答案

在无法访问的范围内定义了LocationData类。而是在自己的.java文件中定义它,如下所示:

class LocationData {
    // final Fields
    // Constructor
    // Getters
}


或作为最外部类的私有静态类(如果未在其他地方使用它)。

然后,对于您的AsyncTask子类,您可能会遇到类似以下内容的情况:

private class AsyncJsonTask extends AsyncTask<Param, LocationData, Void>
{
    private List<LocationData> locationList = new ArrayList<LocationData>();
    // ...
    protected void doInBackground(Param) {
        // ...
        for (int i = 0; i < jsonArr.length(); i++) {
            // Do your stuff with JSon Objects
            // ...
            // Instanciate a new LocationData and pass it as progress:
            LocationData data = new LocationData(latitude, longitude, name);
            locationList.add(data);
            publishProgress(data);
        }
    }

    protected void onProgressUpdate(LocationData data) {
        // Add Marker on Map using data. This is called by
        // publishProgress(LocationData) on the UI Thread.
        mMap.addMarker(/* marker */);
    }

    protected void onPostExecute() {
        // Assign outer class member field the value of the builded list
        // for future reference.
        mLocationList = locationList;
    }
}


这样,您可以在获取下一个标记之前将每个标记分别发布在地图上。

作为附带说明,您应该研究静态方法和字段的含义;您对LocationData.getLocationData()的呼叫无效。

10-08 18:14