Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Threads and Services Bound Services Using a Bound Service

Having challenges with creating a new inner class.

Tried to follow as in the videos but seems i didn't get much of it. Got stuck and here i am. Please help been stuck here for so many days

GeolocationService.java
public class GeolocationService extends Service {

    @Override
    public IBinder onBind(Intent intent) {
      return null;
    }

    //Client methods
    public int getLatitude() { return getLat(); }    
    public int getLongitude() { return getLng(); }

  public class Localbinder extends Binder{
  GeolocationService service;
  public GeolocationService getService (){
  return this.service;

    }
  }
}
MainActivity.java
public class MainActivity extends Activity {
  int latitude;
  int longitude;
  boolean isBound;
  Button updateLocationButton;
  ServiceConnection serviceConnection = new ServiceConnection(){
    public void onServiceConnected(ComponentName name, IBinder binder){
      isBound = true;
    }
    public void onServiceDisconnected(ComponentName name){
      isBound = false;
    }  
  };  

  @Override
  public void onCreate(Bundle savedInstanceState) {
    setContentView(R.layout.activity_main);

    updateLocationButton = (Button) findViewById(R.id.update_button);
    updateLocationButton.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v){

      }
    });
  } 

  @Override
  public void onStart() {
    Intent i = new Intent(this, GeolocationService.class);
    bindService(i, serviceConnection, Context.BIND_AUTO_CREATE);
  }

  @Override
  public void onStop() {
    if (isBound) {
      unbindService(serviceConnection);  
      isBound = false;
    }
  }
}

1 Answer

Seth Kroger
Seth Kroger
56,413 Points

It's just a simple naming/capitalization issue. The challenge say to create "LocalBinder" with the B capitalized, which follows the camel-case convention of capitalizing each word in the name.

thanks Seth! managed to go through the code and fix the compiler errors.