Skip to content
JasonChiu edited this page Jan 29, 2015 · 2 revisions

Client for Android

  1. Build a LocationConfig

    • build by yourself

      LocationConfig config = new NCULocationConfig();
      config.setServerAddress( "http://127.0.0.1:8080/location-Service/api/v2" )
    • build by properties file in resource path

      LocationConfig config = new NCULocationConfig().configure( "settings.properties" );
      #properties in config file
      location.server_address = http://127.0.0.1:8080/location-Service/api/v2
  2. Build a LocationClient using LocationConfig

    LocationClient client = new LocationClient( config, androidContext )
  3. Build a ResponseListener

    class VolleyResponseListener implements ResponseListener<T> {
            @Override
            void onResponse( List<T> responses ) {
                //do something on reponses
            }
            @Override
            void onError( Throwable throwable ) {
                //you can cast it to VolleyError
            }
    }
  4. Call methods on LocationClient to fetch data from server

  • client.getPlaces( "chineseName", new VolleyResponseListener<Place>() )
  • client.getPlaces( PlaceType.SCENE, new VolleyResponseListener<Place>() )
  • client.getPlaceUnits( "chineseName", new VolleyResponseListener<Unit>() )
  • client.getUnits( "fullName", new VolleyResponseListener<Unit>() )
  • client.getPeople( "chineseName", new VolleyResponseListener<Person>() )
  • client.getWords( "keyword", new VolleyResponseListener<Word>() )
Clone this wiki locally