-
Notifications
You must be signed in to change notification settings - Fork 0
LocationClientAndroid
jasonChiu edited this page Jan 26, 2015
·
4 revisions
This is a android client for location server
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 ) );
}