Skip to content

LocationClientAndroid

jasonChiu edited this page Jan 26, 2015 · 4 revisions

Location Client for Android

This is a android client for location server

WorkFlow

User needs to provide a ResponseListener instance while the client send request using volley asynchronously.

public void getPlaces( String placeName, ResponseListener<Place> responseListener );
public void getPlaces( PlaceType placeType , ResponseListener<Place> responseListener );
......

After the response is arrived, use gson to parse json data into mapped java object, then it can finally be passed as the callback parameter of ResponseListener.

@Override
public void onResponse( String response ) {
    T[] result = new Gson().fromJson( response, new TypeToken< T[] >(){}.getType() );
    responseListener.onResponse( Arrays.asList( result ) );
}
Clone this wiki locally